|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:7.4.2' // Updated AGP
|
|
|
|
classpath 'com.google.gms:google-services:4.3.15' // For Firebase
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
**APPLY_PLUGINS**
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
|
|
|
|
// Google Sign-In
|
|
|
|
implementation 'com.google.android.gms:play-services-auth:20.7.0'
|
|
|
|
implementation 'com.google.android.gms:play-services-base:18.2.0'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
implementation 'androidx.browser:browser:1.5.0'
|
|
|
|
|
|
|
|
**DEPS**
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace "com.unity3d.player"
|
|
|
|
ndkPath "**NDKPATH**"
|
|
|
|
compileSdkVersion 34
|
|
|
|
buildToolsVersion '34.0.0'
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion **MINSDKVERSION**
|
|
|
|
targetSdkVersion 34
|
|
|
|
ndk {
|
|
|
|
abiFilters **ABIFILTERS**
|
|
|
|
}
|
|
|
|
versionCode **VERSIONCODE**
|
|
|
|
versionName '**VERSIONNAME**'
|
|
|
|
consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
|
|
|
|
aaptOptions {
|
|
|
|
// Updated noCompress property
|
|
|
|
noCompress = ['.unity3d', '.ress', '.resource', '.obb', '.bundle', '.xap'] + unityStreamingAssets.tokenize(', ')
|
|
|
|
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
|
|
|
|
}
|
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
pickFirst '**/libc++_shared.so'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Android Resolver Exclusions Start
|
|
|
|
android {
|
|
|
|
packagingOptions {
|
|
|
|
exclude ('/lib/armeabi/*' + '*')
|
|
|
|
exclude ('/lib/mips/*' + '*')
|
|
|
|
exclude ('/lib/mips64/*' + '*')
|
|
|
|
exclude ('/lib/x86/*' + '*')
|
|
|
|
exclude ('/lib/x86_64/*' + '*')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Android Resolver Exclusions End
|
|
|
|
|
|
|
|
**IL_CPP_BUILD_SETUP**
|
|
|
|
**SOURCE_BUILD_SETUP**
|
|
|
|
**EXTERNAL_SOURCES**
|