You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/Plugins/Android/mainTemplate.gradle

64 lines
1.7 KiB
Groovy

apply plugin: 'com.android.library'
**APPLY_PLUGINS**
7 months ago
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2 weeks ago
// ✅ Required for Google Sign-In
2 weeks ago
implementation 'com.google.android.gms:play-services-auth:20.7.0'
implementation 'com.google.android.gms:play-services-base:18.2.0'
2 weeks ago
// ⚠️ Don't add google-signin-support here - handled via .aar in Plugins/Android
2 weeks ago
**DEPS**
7 months ago
}
2 weeks ago
7 months ago
android {
namespace "com.unity3d.player"
7 months ago
ndkPath "**NDKPATH**"
2 weeks ago
compileSdkVersion **APIVERSION**
buildToolsVersion '**BUILDTOOLS**'
7 months ago
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
defaultConfig {
minSdkVersion **MINSDKVERSION**
targetSdkVersion **TARGETSDKVERSION**
7 months ago
ndk {
abiFilters **ABIFILTERS**
}
versionCode **VERSIONCODE**
versionName '**VERSIONNAME**'
consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
}
lintOptions {
abortOnError false
}
aaptOptions {
noCompress = **BUILTIN_NOCOMPRESS** + unityStreamingAssets.tokenize(', ')
7 months ago
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
2 weeks ago
}
packagingOptions {
// Avoid duplicate .so/native library errors
pickFirst '**/*.so'
exclude 'META-INF/*.kotlin_module'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
}
**PACKAGING_OPTIONS**
7 months ago
}
2 weeks ago
7 months ago
**IL_CPP_BUILD_SETUP**
**SOURCE_BUILD_SETUP**
**EXTERNAL_SOURCES**