Unity接入Google游戏服务

作者:追风剑情 发布于:2017-8-17 20:13 分类:Android

以下代码接入了Google的:广告、排行榜、分享、评论功能。

build.gradle配置


  1. // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
  2. buildscript {
  3. repositories {
  4. jcenter()
  5. }
  6.  
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:2.3.0'
  9. }
  10.  
  11. dependencies {
  12. classpath 'com.google.gms:google-services:3.0.0'
  13. }
  14. }
  15.  
  16. allprojects {
  17. repositories {
  18. jcenter()
  19. flatDir {
  20. dirs 'libs'
  21. }
  22. }
  23. }
  24.  
  25. apply plugin: 'com.android.application'
  26.  
  27. dependencies {
  28. compile fileTree(dir: 'libs', include: ['*.jar'])
  29. compile 'com.google.android.gms:play-services-fitness:9.6.1'
  30. compile 'com.google.android.gms:play-services-wearable:9.6.1'
  31. compile 'com.google.android.gms:play-services-games:9.6.1'
  32. }
  33.  
  34. android {
  35. compileSdkVersion 25
  36. buildToolsVersion '25.0.2'
  37.  
  38. defaultConfig {
  39. targetSdkVersion 25
  40. versionCode 7
  41. versionName "1.7"
  42. multiDexEnabled true
  43. }
  44.  
  45. lintOptions {
  46. abortOnError false
  47. }
  48. signingConfigs { release {
  49. storeFile file('D:/h5/UnityProjects/KeyStore/xxx.keystore')
  50. storePassword 'xxx'
  51. keyAlias 'xxxxxx'
  52. keyPassword 'xxxxxxx'
  53. v1SigningEnabled true
  54. v2SigningEnabled true
  55. } }
  56.  
  57. buildTypes {
  58. debug {
  59. jniDebuggable true
  60. }
  61. release {
  62. minifyEnabled false
  63. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'
  64. signingConfig signingConfigs.release
  65. }
  66. }
  67.  
  68. }
  69.  
  70. dependencies {
  71. compile fileTree(dir: 'libs', include: ['*.jar'])
  72.  
  73. compile 'com.google.firebase:firebase-core:9.6.1'
  74. compile 'com.google.firebase:firebase-ads:9.6.1'
  75. compile 'com.google.firebase:firebase-crash:9.6.1'
  76. compile 'com.android.support:support-v13:25.1.0'
  77. compile 'com.android.support:recyclerview-v7:25.1.0'
  78.  
  79.  
  80. // Vungle Adapter for AdMob
  81. compile(name: 'VungleAdapter', 'ext': 'aar')
  82. compile('name':'unity-ads', 'ext':'aar')
  83. compile 'com.google.ads.mediation:unity:2.0.8.0'
  84. compile 'com.squareup.picasso:picasso:2.5.2'
  85. compile 'com.android.support:multidex:1.0.1'
  86. }
  87.  
  88. apply plugin: 'com.google.gms.google-services'


AndroidManifest.xml配置


  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.zwwx.game.smallball" xmlns:tools="http://schemas.android.com/tools" android:versionName="1.2" android:versionCode="3" android:installLocation="preferExternal">
  3. <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />
  4. <application android:theme="@style/UnityThemeSelector" android:icon="@drawable/app_icon" android:roundIcon="@drawable/app_icon" android:label="@string/app_name" android:isGame="true" android:banner="@drawable/app_banner">
  5. <activity android:label="@string/app_name" android:screenOrientation="portrait" android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale" android:name=".MainActivity">
  6. <intent-filter>
  7. <action android:name="android.intent.action.MAIN" />
  8. <category android:name="android.intent.category.LAUNCHER" />
  9. <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
  10. </intent-filter>
  11. <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
  12. </activity>
  13. <meta-data android:name="com.google.android.gms.games.APP_ID"
  14. android:value="@string/app_id" />
  15. <meta-data
  16. android:name="com.google.android.gms.version"
  17. android:value="@integer/google_play_services_version" />
  18. <activity android:name="com.vungle.publisher.VideoFullScreenAdActivity"
  19. android:configChanges="keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize"
  20. android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
  21.  
  22. <activity android:name="com.vungle.publisher.MraidFullScreenAdActivity"
  23. android:configChanges="keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize"
  24. android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>
  25.  
  26. <activity android:name="com.vungle.publisher.FullScreenAdActivity"
  27. android:configChanges="keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize"
  28. android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>
  29.  
  30. <activity
  31. android:name="com.google.android.gms.ads.AdActivity"
  32. android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
  33. android:theme="@android:style/Theme.Translucent" />
  34.  
  35. <activity
  36. android:name="com.inmobi.rendering.InMobiAdActivity"
  37. android:configChanges="keyboardHidden|orientation|keyboard|smallestScreenSize|screenSize|screenLayout"
  38. android:hardwareAccelerated="true"
  39. android:resizeableActivity="false"
  40. android:theme="@android:style/Theme.NoTitleBar"/>
  41.  
  42. <receiver
  43. android:name="com.inmobi.commons.core.utilities.uid.ImIdShareBroadCastReceiver"
  44. android:enabled="true"
  45. android:exported="true" >
  46. <intent-filter>
  47. <action android:name="com.inmobi.share.id" />
  48. </intent-filter>
  49. </receiver>
  50. </application>
  51. <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="25" />
  52. <uses-feature android:glEsVersion="0x00020000" />
  53.  
  54. <uses-permission android:name="android.permission.INTERNET"/>
  55. <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
  56. <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
  57. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  58. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
  59.  
  60. <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
  61. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  62. <uses-permission android:name="android.permission.RESTART_PACKAGES" />
  63. <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
  64. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  65. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  66. <uses-permission android:name="android.permission.READ_LOGS" />
  67. <uses-permission android:name="android.permission.VIBRATE"/>
  68. <uses-permission android:name="android.permission.RECORD_AUDIO"/>
  69. <uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION"/>
  70. <uses-permission android:name="android.permission.READ_CALENDAR"/>
  71. <uses-permission android:name="android.permission.WRITE_CALENDAR"/>
  72.  
  73. <uses-permission android:name="android.permission.GET_TASKS"/>
  74. <uses-permission android:name="android.permission.GET_ACCOUNTS" />
  75. <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  76.  
  77. <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
  78. <uses-feature android:name="android.hardware.touchscreen.multitouch" android:required="false" />
  79. <uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" android:required="false" />
  80. <uses-feature android:name="android.software.leanback" android:required="false"/>
  81. </manifest>


Java代码


  1. package com.zwwx.game.smallball;
  2.  
  3. import android.content.ActivityNotFoundException;
  4. import android.content.IntentSender;
  5. import android.os.Bundle;
  6. import android.util.Log;
  7. import android.view.View;
  8. import android.widget.RelativeLayout;
  9. import android.content.IntentFilter;
  10. import android.content.BroadcastReceiver;
  11. import android.net.ConnectivityManager;
  12. import android.net.NetworkInfo;
  13. import android.content.Context;
  14. import android.content.Intent;
  15. import android.widget.Toast;
  16. import android.content.Intent;
  17. import android.net.Uri;
  18. import java.io.File;
  19.  
  20. import com.google.android.gms.ads.AdListener;
  21. import com.google.android.gms.ads.AdRequest;
  22. import com.google.android.gms.ads.AdSize;
  23. import com.google.android.gms.ads.AdView;
  24. import com.google.android.gms.ads.InterstitialAd;
  25. import com.google.android.gms.ads.MobileAds;
  26. import com.google.android.gms.ads.reward.RewardItem;
  27. import com.google.android.gms.ads.reward.RewardedVideoAd;
  28. import com.google.android.gms.ads.reward.RewardedVideoAdListener;
  29. //import com.google.android.gms.appstate.AppStateManager;
  30. import com.google.android.gms.common.ConnectionResult;
  31. import com.google.android.gms.common.api.GoogleApiClient;
  32. import com.google.android.gms.common.api.GoogleApiClient.ConnectionCallbacks;
  33. import com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener;
  34. import com.google.android.gms.drive.Drive;
  35. import com.google.android.gms.games.Games;
  36. import com.google.firebase.analytics.FirebaseAnalytics;
  37. import com.unity3d.player.UnityPlayer;
  38. import org.json.JSONObject;
  39. import org.json.JSONException;
  40.  
  41. /**
  42. * Created by YangLiu on 2017/3/23.
  43. */
  44.  
  45. public class MainActivity extends UnityPlayerActivity implements RewardedVideoAdListener, ConnectionCallbacks,
  46. OnConnectionFailedListener{
  47.  
  48. private static final String TAG = "zwwx";
  49.  
  50. private static final String CONTINUE_GAME = "ContinueGame";
  51. private static final String ON_REWARDED_VIDEO = "OnRewardedVideo";
  52. private static final String ON_REWARDED_VIDEO_AD_LOADED = "OnRewardedVideoAdLoaded";
  53. private static final String ON_REWARDED_VIDEO_AD_CLOSED = "OnRewardedVideoAdClosed";
  54.  
  55. private static final int REQUEST_LEADERBOARD = 100;
  56. private static final int RC_SIGN_IN = 9001;//登录UI返回的requestCode
  57. private static final int REQUEST_CODE_RESOLVE_ERR = 1000;
  58.  
  59. private String bannerAdsId = null;
  60. private String interAdsId = null;
  61. private String videoAdsId = null;
  62.  
  63. private String unityObject = null;
  64. private String unityObjectFun = null;
  65.  
  66. private AdView mAdView;
  67. private InterstitialAd mInterstitialAd;
  68. private RewardedVideoAd mRewardedVideoAd;
  69. private boolean mAdsTestModel = false;
  70. private FirebaseAnalytics mFirebaseAnalytics;
  71. private GoogleApiClient mGoogleApiClient;
  72.  
  73. @Override protected void onCreate (Bundle savedInstanceState)
  74. {
  75. super.onCreate(savedInstanceState);
  76. mFirebaseAnalytics = FirebaseAnalytics.getInstance(this);
  77.  
  78. this.runOnUiThread(new Runnable() {
  79. @Override
  80. public void run() {
  81. //添加横幅广告
  82. mAdView = new AdView(MainActivity.this);
  83. mAdView.setAdSize(AdSize.SMART_BANNER);
  84. mAdView.setAdListener(new AdListener() {
  85. @Override
  86. public void onAdLoaded() {
  87. Log.d(TAG, "Banner Ad loaded: onAdLoaded()");
  88. RelativeLayout.LayoutParams view_para = new RelativeLayout.LayoutParams(
  89. AdSize.SMART_BANNER.getWidthInPixels(MainActivity.this),
  90. AdSize.SMART_BANNER.getHeightInPixels(MainActivity.this));
  91. view_para.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM,RelativeLayout.TRUE);
  92. view_para.addRule(RelativeLayout.CENTER_HORIZONTAL,RelativeLayout.TRUE);
  93. mAdView.setLayoutParams(view_para);
  94. }
  95. });
  96.  
  97. int screenW = MainActivity.this.getWindowManager().getDefaultDisplay().getWidth();
  98. int screenH = MainActivity.this.getWindowManager().getDefaultDisplay().getHeight();
  99. Log.d(TAG, "screen width: "+screenW);
  100. Log.d(TAG, "screen height: "+screenH);
  101.  
  102. RelativeLayout layout = new RelativeLayout(MainActivity.this);
  103. layout.addView(mAdView, new RelativeLayout.LayoutParams(screenW, screenH));
  104. mUnityPlayer.addView(layout);
  105.  
  106. //初始化全屏广告
  107. mInterstitialAd = new InterstitialAd(MainActivity.this);
  108. mInterstitialAd.setAdListener(new AdListener() {
  109. @Override
  110. public void onAdClosed() {
  111. loadInterstitial();
  112. continueGame();
  113. }
  114. });
  115.  
  116. //初始化激励视频广告
  117. mRewardedVideoAd = MobileAds.getRewardedVideoAdInstance(MainActivity.this);
  118. mRewardedVideoAd.setRewardedVideoAdListener(MainActivity.this);
  119. }
  120. });
  121.  
  122. hideBanner();
  123.  
  124. mGoogleApiClient = new GoogleApiClient.Builder(this)
  125. .addConnectionCallbacks(this)
  126. .addOnConnectionFailedListener(this)
  127. .addApi(Games.API).addScope(Games.SCOPE_GAMES) // Games
  128. //.addApi(AppStateManager.API).addScope(AppStateManager.SCOPE_APP_STATE) // AppState
  129. //.addScope(Drive.SCOPE_APPFOLDER) // SavedGames
  130. .build();
  131. }
  132.  
  133. @Override
  134. protected void onStart() {
  135. super.onStart();
  136. if(!mGoogleApiClient.isConnected())
  137. mGoogleApiClient.connect();
  138. }
  139.  
  140. // 向Unity发消息
  141. private void sendMessageToUnity(String type)
  142. {
  143. sendMessageToUnity(type, "");
  144. }
  145.  
  146. private void sendMessageToUnity(String type, String data)
  147. {
  148. if(null == unityObject || null == unityObjectFun)
  149. return;
  150. JSONObject jsonObj = new JSONObject();
  151. try{
  152. jsonObj.put("type", type);
  153. jsonObj.put("data", data);
  154. UnityPlayer.UnitySendMessage(unityObject, unityObjectFun, jsonObj.toString());
  155. }catch(JSONException e){
  156. Log.e(TAG, "JSONException: sendMessageToUnity() type="+type);
  157. Log.e(TAG, e.getLocalizedMessage());
  158. }
  159. }
  160.  
  161. // 继续游戏
  162. private void continueGame()
  163. {
  164. sendMessageToUnity(CONTINUE_GAME);
  165. }
  166.  
  167. // 设置广告应用ID
  168. public void setAdMobId(String appId)
  169. {
  170. Log.d(TAG, "admob_id="+appId);
  171. MobileAds.initialize(this, appId);
  172. }
  173.  
  174. // 设置广告单元ID
  175. public void setAdUnitId(String bannerAdsId, String interAdsId, String videoAdsId)
  176. {
  177. Log.d(TAG, "bannerAdsId="+bannerAdsId);
  178. Log.d(TAG, "interAdsId="+interAdsId);
  179. Log.d(TAG, "videoAdsId="+videoAdsId);
  180.  
  181. this.bannerAdsId = bannerAdsId;
  182. this.interAdsId = interAdsId;
  183. this.videoAdsId = videoAdsId;
  184.  
  185. mAdView.setAdUnitId(bannerAdsId);
  186. mInterstitialAd.setAdUnitId(interAdsId);
  187. loadInterstitial();
  188. loadRewardedVideoAd();
  189. }
  190.  
  191. public void setAdsTestModel(boolean testModel)
  192. {
  193. Log.d(TAG, "testModel="+testModel);
  194. this.mAdsTestModel = testModel;
  195. }
  196.  
  197. public void setUnityListener(String unityObject, String functionName)
  198. {
  199. Log.d(TAG, "unityObject="+unityObject+", functionName="+functionName);
  200. this.unityObject = unityObject;
  201. this.unityObjectFun = functionName;
  202. }
  203.  
  204. // 加载横幅广告
  205. private void loadBanner()
  206. {
  207. this.runOnUiThread(new Runnable() {
  208. @Override
  209. public void run() {
  210. if(null == bannerAdsId)
  211. return;
  212.  
  213. if(mAdView.isLoading())
  214. return;
  215.  
  216. AdRequest.Builder builder = new AdRequest.Builder();
  217. if(mAdsTestModel)
  218. {
  219. builder.addTestDevice(AdRequest.DEVICE_ID_EMULATOR);
  220. builder.addTestDevice("AC98C820A50B4AD8A2106EDE96FB87D4");
  221. }
  222. AdRequest adRequest = builder.build();
  223. mAdView.loadAd(adRequest);
  224. Log.d(TAG, "Request banner ad: mAdView.loadAd(adRequest)");
  225. }
  226. });
  227. }
  228.  
  229. // 显示横幅广告
  230. public void showBanner()
  231. {
  232. this.runOnUiThread(new Runnable() {
  233. @Override
  234. public void run() {
  235. mAdView.setVisibility(View.VISIBLE);
  236. loadBanner();
  237. }
  238. });
  239. }
  240.  
  241. // 隐藏横幅广告
  242. public void hideBanner()
  243. {
  244. this.runOnUiThread(new Runnable() {
  245. @Override
  246. public void run() {
  247. mAdView.setVisibility(View.GONE);
  248. }
  249. });
  250. }
  251.  
  252. // 加载全屏广告
  253. private void loadInterstitial()
  254. {
  255. this.runOnUiThread(new Runnable() {
  256. @Override
  257. public void run() {
  258. if(null == interAdsId)
  259. return;
  260.  
  261. if(mInterstitialAd.isLoading() || mInterstitialAd.isLoaded())
  262. return;
  263.  
  264. AdRequest.Builder builder = new AdRequest.Builder();
  265. if(mAdsTestModel)
  266. {
  267. builder.addTestDevice(AdRequest.DEVICE_ID_EMULATOR);
  268. builder.addTestDevice("AC98C820A50B4AD8A2106EDE96FB87D4");
  269. }
  270. AdRequest adRequest = builder.build();
  271. mInterstitialAd.loadAd(adRequest);
  272. }
  273. });
  274. }
  275.  
  276. // 显示全屏广告
  277. public void showInterstitial()
  278. {
  279. this.runOnUiThread(new Runnable() {
  280. @Override
  281. public void run() {
  282. if (mInterstitialAd.isLoaded()) {
  283. mInterstitialAd.show();
  284. } else {
  285. continueGame();
  286. if(!mInterstitialAd.isLoading())
  287. loadInterstitial();
  288. }
  289. }
  290. });
  291. }
  292.  
  293. // 加载激励视频广告
  294. private void loadRewardedVideoAd()
  295. {
  296. this.runOnUiThread(new Runnable() {
  297. @Override
  298. public void run() {
  299. if(null == videoAdsId)
  300. return;
  301.  
  302. if(mRewardedVideoAd.isLoaded())
  303. return;
  304.  
  305. // build network extras bundle
  306. //Bundle extras = new VungleExtrasBuilder()
  307. //.setSoundEnabled(true)
  308. //.build();
  309. //Bundle extras = new Bundle();
  310.  
  311. AdRequest.Builder builder = new AdRequest.Builder();
  312. if(mAdsTestModel)
  313. {
  314. builder.addTestDevice(AdRequest.DEVICE_ID_EMULATOR);
  315. builder.addTestDevice("AC98C820A50B4AD8A2106EDE96FB87D4");
  316. }
  317. AdRequest adRequest = builder.build();
  318. mRewardedVideoAd.loadAd(videoAdsId, adRequest);
  319. Log.d(TAG, "Request Reward Video: mRewardedVideoAd.loadAd(videoAdsId, adRequest)");
  320. }
  321. });
  322. }
  323.  
  324. // 激励视频是否已加载
  325. private boolean isVideoLoaded;
  326. public boolean isRewardVideoLoaded()
  327. {
  328. this.runOnUiThread(new Runnable() {
  329. @Override
  330. public void run() {
  331. isVideoLoaded = mRewardedVideoAd.isLoaded();
  332. }
  333. });
  334. return isVideoLoaded;
  335. }
  336.  
  337. // 显示激励视频
  338. public void showRewardVideo()
  339. {
  340. this.runOnUiThread(new Runnable() {
  341. @Override
  342. public void run() {
  343. if(!mRewardedVideoAd.isLoaded()){
  344. loadRewardedVideoAd();
  345. return;
  346. }
  347. mRewardedVideoAd.show();
  348. }
  349. });
  350. }
  351.  
  352. @Override
  353. public void onRewardedVideoAdLeftApplication() {
  354. Log.d(TAG, "onRewardedVideoAdLeftApplication()");
  355. }
  356.  
  357. @Override
  358. public void onRewardedVideoAdClosed() {
  359. Log.d(TAG, "onRewardedVideoAdClosed()");
  360. sendMessageToUnity(ON_REWARDED_VIDEO_AD_CLOSED);
  361. }
  362.  
  363. @Override
  364. public void onRewardedVideoAdFailedToLoad(int errorCode) {
  365. Log.d(TAG, "onRewardedVideoAdFailedToLoad() errorCode="+errorCode);
  366. }
  367.  
  368. @Override
  369. public void onRewardedVideoAdLoaded() {
  370. Log.d(TAG, "onRewardedVideoAdLoaded()");
  371. sendMessageToUnity(ON_REWARDED_VIDEO_AD_LOADED);
  372. }
  373.  
  374. @Override
  375. public void onRewardedVideoAdOpened() {
  376. Log.d(TAG, "onRewardedVideoAdOpened()");
  377. }
  378.  
  379. @Override
  380. public void onRewarded(RewardItem reward) {
  381. Log.d(TAG, "onRewarded()");
  382. sendMessageToUnity(ON_REWARDED_VIDEO);
  383. }
  384.  
  385. @Override
  386. public void onRewardedVideoStarted() {
  387. Log.d(TAG, "onRewardedVideoStarted()");
  388. }
  389.  
  390. // Resume Unity
  391. @Override protected void onResume()
  392. {
  393. super.onResume();
  394.  
  395. //侦听网络连接
  396. intentFilter = new IntentFilter();
  397. intentFilter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
  398. registerReceiver(intentReceiver, intentFilter);
  399. }
  400.  
  401. // Pause Unity
  402. @Override protected void onPause()
  403. {
  404. super.onPause();
  405. unregisterReceiver(intentReceiver);
  406. }
  407.  
  408. // Quit Unity
  409. @Override protected void onDestroy ()
  410. {
  411. super.onDestroy();
  412. mRewardedVideoAd.destroy(this);
  413. }
  414.  
  415. IntentFilter intentFilter;
  416.  
  417. //处理侦听到的意图广播
  418. private BroadcastReceiver intentReceiver = new BroadcastReceiver() {
  419.  
  420. @Override
  421. public void onReceive(Context context, Intent intent) {
  422. ConnectivityManager cm = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
  423. NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
  424. if(null == activeNetwork)
  425. {
  426. //Toast.makeText(getBaseContext(), "无网络连接", Toast.LENGTH_LONG).show();
  427. Log.d(TAG, "无网络连接");
  428. return;
  429. }
  430. boolean isConnected = activeNetwork.isConnectedOrConnecting();
  431. boolean isMobile = activeNetwork.getType() == ConnectivityManager.TYPE_MOBILE;
  432. if(isConnected){
  433. loadBanner();
  434. loadInterstitial();
  435. loadRewardedVideoAd();
  436. if(!mGoogleApiClient.isConnected())
  437. mGoogleApiClient.connect();
  438. }
  439. //Toast.makeText(getBaseContext(), "网络已连接:"+isConnected+", 移动网络: "+isMobile, Toast.LENGTH_LONG).show();
  440. Log.d(TAG, "网络已连接:"+isConnected+", 移动网络: "+isMobile);
  441. }
  442. };
  443.  
  444. //分享单张图片
  445. public void shareSingleImage(String title, String imagePath) {
  446. //String imagePath = Environment.getExternalStorageDirectory() + File.separator + "test.jpg";
  447. //由文件得到uri
  448. Uri imageUri = Uri.fromFile(new File(imagePath));
  449. Log.d("share", "uri:" + imageUri);
  450.  
  451. Intent shareIntent = new Intent();
  452. shareIntent.setAction(Intent.ACTION_SEND);
  453. shareIntent.putExtra(Intent.EXTRA_STREAM, imageUri);
  454. shareIntent.setType("image/*");
  455. startActivity(Intent.createChooser(
  456. shareIntent, title));
  457. }
  458.  
  459. //打开App所在Google商店的下载页面(评论url)
  460. public void openCommentUrl()
  461. {
  462. Uri uri = Uri.parse("market://details?id=" + this.getPackageName());
  463. Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
  464. goToMarket.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY |
  465. Intent.FLAG_ACTIVITY_NEW_DOCUMENT |
  466. Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
  467. try {
  468. this.startActivity(goToMarket);
  469. } catch (ActivityNotFoundException e) {
  470. this.startActivity(new Intent(Intent.ACTION_VIEW,
  471. Uri.parse("http://play.google.com/store/apps/details?id=" + this.getPackageName())));
  472. }
  473. }
  474.  
  475. //解锁成就
  476. public void unlockAchievement(String achievementId)
  477. {
  478. Bundle bundle = new Bundle();
  479. bundle.putString(FirebaseAnalytics.Param.ACHIEVEMENT_ID, achievementId);
  480. mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.UNLOCK_ACHIEVEMENT, bundle);
  481. }
  482.  
  483. //GoogleApiClient连接成功
  484. @Override
  485. public void onConnected(Bundle connectionHint) {
  486. Log.d(TAG, "[GoogleApiClient] onConnected: connected!");
  487. }
  488.  
  489. //GoogleApiClient连接失败
  490. @Override
  491. public void onConnectionFailed(ConnectionResult result) {
  492. Log.d(TAG, "[GoogleApiClient] onConnectionFailed: "+result.getErrorMessage() + ", "+result.toString());
  493. if (result.hasResolution()) {
  494. try {
  495. result.startResolutionForResult(this, REQUEST_CODE_RESOLVE_ERR);
  496. } catch (IntentSender.SendIntentException e) {
  497. mGoogleApiClient.connect();
  498. }
  499. }
  500. }
  501.  
  502. //GoogleApiClient连接断开
  503. @Override
  504. public void onConnectionSuspended(int cause) {
  505. Log.d(TAG, "[GoogleApiClient] onConnectionSuspended, cause=" + cause);
  506. }
  507.  
  508. //上报积分
  509. public void submitScore(String leaderboardId, long score){
  510. if(!mGoogleApiClient.isConnected()) {
  511. mGoogleApiClient.connect();
  512. return;
  513. }
  514. Games.Leaderboards.submitScore(mGoogleApiClient, leaderboardId, score);
  515. }
  516.  
  517. //打开排行榜界面
  518. public void showLeaderboardUI(String leaderboardId){
  519. if(!mGoogleApiClient.isConnected()) {
  520. mGoogleApiClient.connect();
  521. return;
  522. }
  523. startActivityForResult(Games.Leaderboards.getLeaderboardIntent(mGoogleApiClient,
  524. leaderboardId), REQUEST_LEADERBOARD);
  525. }
  526.  
  527. @Override
  528. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  529. super.onActivityResult(requestCode, resultCode, data);
  530. Log.d(TAG, "onActivityResult: requestCode="+requestCode+", resultCode="+resultCode);
  531. if (requestCode == RC_SIGN_IN) {
  532. if (resultCode == RESULT_OK) {
  533. // Sign-in was successful, connect the API Client
  534. Log.d(TAG, "onActivityResult: RC_SIGN_IN (OK)");
  535. mGoogleApiClient.connect();
  536. }else{
  537. Log.d(TAG, "onActivityResult: RC_SIGN_IN (Error)");
  538. }
  539. }
  540. }
  541. }

完整项目工程
链接:http://pan.baidu.com/s/1c1HX5LY 密码:8e1p

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号