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

62 lines
1.6 KiB
Groovy

apply plugin: 'com.android.library'
**APPLY_PLUGINS**
allprojects {
2 weeks ago
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://maven.google.com' }
2 weeks ago
}
}
7 months ago
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
// ✅ Correct Google Sign-In Dependencies
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'
// ✅ Force correct AndroidX dependencies
implementation 'androidx.annotation:annotation:1.3.0'
implementation 'androidx.core:core:1.6.0'
2 weeks ago
**DEPS**
7 months ago
}
2 weeks ago
7 months ago
android {
namespace "com.unity3d.player"
7 months ago
ndkPath "**NDKPATH**"
compileSdkVersion 33 // ✅ Ensure compileSdkVersion is specified
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:!*~"
}**PACKAGING_OPTIONS**
7 months ago
}
2 weeks ago
7 months ago
**IL_CPP_BUILD_SETUP**
**SOURCE_BUILD_SETUP**
**EXTERNAL_SOURCES**