Google的GDPR同意SDK是否可以与Unity配合使用?

时间:2018-08-26 17:13:15

标签: android unity3d gradle ads

我对这个论坛非常陌生,但是一直在网上四处逛逛,这似乎是在单位网站之外问单位问题的最佳场所之一。

那么,Google的GDPR同意SDK是否可以统一工作?如指定的here.

我已经创建了同意书和脚本,但是特别地,我想使用SDK附带的ConsentInformation.getInstance(context).isRequestLocationInEeaOrUnknown()方法,

我尝试使用自定义gradle导入SDK及其提供的说明,但是每次尝试构建时都会出现错误。我的mainTemplate gradle看起来像这样:

buildscript {
 repositories {
     jcenter()
     google()
 }

 dependencies {
     classpath 'com.android.tools.build:gradle:3.0.1'
 }
}

 allprojects {
   repositories {
     flatDir {
         dirs 'libs'
     }
     maven {
         url "https://maven.google.com"
     }
 }
}

apply plugin: 'com.android.application'

dependencies {
 implementation fileTree(dir: 'libs', include: ['*.jar'])
 implementation 'com.google.android.ads.consent:consent-library:1.0.6'
**DEPS**}

android {
 compileSdkVersion **APIVERSION**
 buildToolsVersion '**BUILDTOOLS**'

 defaultConfig {
     minSdkVersion **MINSDKVERSION**
     targetSdkVersion **TARGETSDKVERSION**
     applicationId '**APPLICATIONID**'
     ndk {
         abiFilters **ABIFILTERS**
     }
     versionCode **VERSIONCODE**
     versionName '**VERSIONNAME**'
 }

 lintOptions {
     abortOnError false
 }

 aaptOptions {
     noCompress '.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**
 }**SIGN**

 buildTypes {
     debug {
         minifyEnabled **MINIFY_DEBUG**
         useProguard **PROGUARD_DEBUG**
         proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD**
         jniDebuggable true
     }
     release {
         minifyEnabled **MINIFY_RELEASE**
         useProguard **PROGUARD_RELEASE**
         proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
     }
 }**PACKAGING_OPTIONS****SPLITS**
**BUILT_APK_LOCATION**
}**SPLITS_VERSION_CODE****SOURCE_BUILD_SETUP**

非常抱歉,它看起来很凌乱。在gradle构建错误中它告诉我:

 * What went wrong:
 Could not resolve all files for configuration ':debugCompileClasspath'.
 > Could not find com.google.code.gson:gson:2.8.4.

非常感谢您的帮助或建议。

0 个答案:

没有答案