facebook twitter hatena line email

「Android/広告組込/Amoad」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==sdkダウンロード== https://github.com/amoad/amoad-android-sdk ==reward確認== #サンプルプロジェクトを起動しinterstitialafioを動かす #sid入力...」)
 
(sdkダウンロード)
行1: 行1:
 
==sdkダウンロード==
 
==sdkダウンロード==
 
https://github.com/amoad/amoad-android-sdk
 
https://github.com/amoad/amoad-android-sdk
 +
 +
==You need to use a Theme.AppCompat theme (or descendant) with this activity.エラーが出る場合==
 +
@style/AppThemeをAndroidManifest.xmlのapplicationタグに追加する
 +
<application
 +
        android:label="@string/app_name"
 +
        android:allowBackup="true"
 +
        android:icon="@mipmap/ic_launcher">
 +
 +
<application
 +
        android:label="@string/app_name"
 +
        android:allowBackup="true"
 +
        android:icon="@mipmap/ic_launcher"
 +
        android:theme="@style/AppTheme"
 +
        >
 +
 +
app/res/values/styles.xml
 +
<pre>
 +
<resources>
 +
    <!-- Base application theme. -->
 +
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
 +
        <!-- Customize your theme here. -->
 +
        <item name="colorPrimary">@color/colorPrimary</item>
 +
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
 +
        <item name="colorAccent">@color/colorAccent</item>
 +
    </style>
 +
</resources>
 +
</pre>
  
 
==reward確認==
 
==reward確認==
 
#サンプルプロジェクトを起動しinterstitialafioを動かす
 
#サンプルプロジェクトを起動しinterstitialafioを動かす
 
#sid入力欄にamoad指定のsidを入力する
 
#sid入力欄にamoad指定のsidを入力する

2018年9月27日 (木) 14:56時点における版

sdkダウンロード

https://github.com/amoad/amoad-android-sdk

You need to use a Theme.AppCompat theme (or descendant) with this activity.エラーが出る場合

@style/AppThemeをAndroidManifest.xmlのapplicationタグに追加する

<application
        android:label="@string/app_name"
        android:allowBackup="true"
       android:icon="@mipmap/ic_launcher">

<application
        android:label="@string/app_name"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:theme="@style/AppTheme"
        >

app/res/values/styles.xml

<resources>
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
</resources>

reward確認

  1. サンプルプロジェクトを起動しinterstitialafioを動かす
  2. sid入力欄にamoad指定のsidを入力する