「Android Getting Started 4.0」修訂間的差異

出自TAMedia
跳至導覽 跳至搜尋
imported>Wikiuser
(新頁面: == <b>簡介</b> == :TAMedia SDK提供Android Mobile App開發者簡易迅速的方式整合行動App廣告, 廣告的種類包含橫幅Banner, 全版Interstitial, Rich Media, 原生...)
 
imported>Wikiuser
行 8: 行 8:
請按照下列方式設置專案<br><br>
請按照下列方式設置專案<br><br>
<big><u>Step 1: 將SDK放入app專案的<b>libs</b>資料夾</u></big><br>
<big><u>Step 1: 將SDK放入app專案的<b>libs</b>資料夾</u></big><br>
:請至[[Download Android SDK 6|下載 Download SDK]]下載SDK,並將壓縮檔內的JAR檔 (adpmobile-lib-rx.x.x.jar) 放至專案的libs資料夾, 若無libs資料夾請自行建立<br>
:請至[[Download Android SDK 6|下載 Download SDK]]下載SDK,並將壓縮檔內的JAR檔 (adpmobile-lib-rx.x.x.aar) 放至專案的libs資料夾, 若無libs資料夾請自行建立<br>


補上圖片
[[檔案:Import_SDK7_Step1-1.PNG]]


<big><u>Step 2-1: 在app的<b>build.gradle</b>的dependencies內加入下列程式 (請根據jar檔名字自行調整)</u></big><br>
<big><u>Step 2-1: 在app的<b>build.gradle</b>的dependencies內加入下列程式 (請根據jar檔名字自行調整)</u></big><br>

於 2020年7月27日 (一) 08:49 的修訂

簡介

TAMedia SDK提供Android Mobile App開發者簡易迅速的方式整合行動App廣告, 廣告的種類包含橫幅Banner, 全版Interstitial, Rich Media, 原生性廣告以及InRead廣告, 使用上跟Google Mobile Ads (Admob)類似, 能大量節省開發者學習時間


系統需求

Android 4.0.3以上 (API Level 15+), InRead廣告則需Android 5.0以上才能取得廣告 (API Level 21+)


Android Studio專案整合SDK

請按照下列方式設置專案

Step 1: 將SDK放入app專案的libs資料夾

請至下載 Download SDK下載SDK,並將壓縮檔內的JAR檔 (adpmobile-lib-rx.x.x.aar) 放至專案的libs資料夾, 若無libs資料夾請自行建立

Import SDK7 Step1-1.PNG

Step 2-1: 在app的build.gradle的dependencies內加入下列程式 (請根據jar檔名字自行調整)

補上圖片

請加入TAMedia的SDK和Google Play Service的廣告模組,若SDK6以上需另外加入Retrofit
 dependencies {
      /* Other dependencies... */
   
    implementation 'com.google.android.gms:play-services-ads-identifier:16.0.0'
    implementation 'com.squareup.retrofit2:retrofit:2.5.0'  /* SDK6以上請加入 */
    implementation files('libs/adpmobile-lib-rx.x.x.jar')
 }



Step 2-2: 在Project的build.gradle的repositories內加入google()

補上圖片

Google Play Service版本若為11.2+, 必須在repositories新增google(), 這是因為Google Play Service自11.2版本後, 改透過maven.google.com取得
 buildscript {    
     repositories {
         google()
         jcenter()
     }
     dependencies {
         classpath 'com.android.tools.build:gradle:3.0.1'
         
         // NOTE: Do not place your application dependencies here; they belong
         // in the individual module build.gradle files
     }
 }
 
 allprojects {
     repositories {
         google()
         jcenter()
     }
 }




Step 3: 在AndroidManifest.xml的manifest tag宣告權限

補上圖片

  • Required Permission
 <!-- TAMedia Required Permission -->
 <uses-permission android:name="android.permission.INTERNET" />
 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
 <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <!-- SDK4.0以上版本請移除 -->
  • Optional Permission
 <!-- TAMedia Optional Permission -->
 <uses-permission android:name="android.permission.VIBRATE" /> 
 <uses-permission android:name="android.permission.CAMERA" />
 <uses-permission android:name="android.permission.RECORD_AUDIO" />
 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 
 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />



Step 4: 在AndroidManifest.xml的manifest tag宣告Activity

 <activity
    android:name="com.taiwanmobile.pt.adp.view.TWMAdActivity"
    android:configChanges="orientation|keyboardHidden|navigation|keyboard|screenLayout|uiMode|screenSize|smallestScreenSize"
    android:hardwareAccelerated="true"
    android:theme="@android:style/Theme.Translucent" >
 </activity>


回首頁