No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mainTemplate.gradle 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. apply plugin: 'com.android.library'
  2. **APPLY_PLUGINS**
  3. dependencies {
  4. implementation fileTree(dir: 'libs', include: ['*.jar'])
  5. implementation 'androidx.appcompat:appcompat:1.2.0'
  6. **DEPS**}
  7. android {
  8. compileSdkVersion **APIVERSION**
  9. buildToolsVersion '**BUILDTOOLS**'
  10. compileOptions {
  11. sourceCompatibility JavaVersion.VERSION_1_8
  12. targetCompatibility JavaVersion.VERSION_1_8
  13. }
  14. defaultConfig {
  15. minSdkVersion **MINSDKVERSION**
  16. targetSdkVersion **TARGETSDKVERSION**
  17. ndk {
  18. abiFilters **ABIFILTERS**
  19. }
  20. versionCode **VERSIONCODE**
  21. versionName '**VERSIONNAME**'
  22. consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
  23. }
  24. lintOptions {
  25. abortOnError false
  26. }
  27. aaptOptions {
  28. noCompress = **BUILTIN_NOCOMPRESS** + unityStreamingAssets.tokenize(', ')
  29. ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
  30. }**PACKAGING_OPTIONS**
  31. }**REPOSITORIES**
  32. **IL_CPP_BUILD_SETUP**
  33. **SOURCE_BUILD_SETUP**
  34. **EXTERNAL_SOURCES**