我的SDK谷歌移动广告是否在7.0.0之前

问题描述 投票:0回答:1

请问,我的SDK Google Mobile Ads版本是否优于7.0.0?

这是我的build.gradle

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.0"


    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:+'
    compile 'com.google.android.gms:play-services-ads:+'

}
android mobile sdk
1个回答
0
投票

正如你在这里看到的:https://source.android.com/setup/build-numbers

Nougat 7.0 API级别24

所以你的sdk(23)不大于版本7.0(24)

© www.soinside.com 2019 - 2024. All rights reserved.