123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
- allprojects {
- ext.kotlin_version = "1.4.20"
- buildscript {
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath "com.android.tools.build:gradle:4.1.1"
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- }
- }
- repositories {
- google()
- jcenter()
- flatDir {
- dirs "${project(':launcher').projectDir}/libs"
- dirs "${project(':unityLibrary').projectDir}/libs"
- }
- }
- }
- apply plugin: 'com.android.application'
- dependencies {
- // implementation project(':dance')
- implementation project(':unityLibrary')
- implementation project(':sdklibrary')
- }
- android {
- compileSdkVersion 28
- buildToolsVersion '28.0.3'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- defaultConfig {
- minSdkVersion 22
- targetSdkVersion 28
- applicationId 'com.ouj.sdk.test'
- ndk {
- abiFilters 'armeabi-v7a'
- }
- versionCode 1
- versionName '0.1'
- }
- aaptOptions {
- noCompress = ['.unity3d', '.ress', '.resource', '.obb']
- ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
- }
- lintOptions {
- abortOnError false
- }
- signingConfigs {
- release {
- storeFile file("signed.jks")
- storePassword "111111"
- keyAlias "OUJ_SHOES"
- keyPassword "111111"
- }
- }
- buildTypes {
- debug {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt')
- signingConfig signingConfigs.debug
- jniDebuggable true
- }
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt')
- signingConfig signingConfigs.release
- }
- }
- packagingOptions {
- doNotStrip '*/armeabi-v7a/*.so'
- }
- bundle {
- language {
- enableSplit = false
- }
- density {
- enableSplit = false
- }
- abi {
- enableSplit = true
- }
- }
- }
|