wangguan
2020-12-29 452c75675679c44cc39b04bdb7d330d7c5c14d5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
 
apply plugin: 'com.android.library'
 
 
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:support-v4:27.0.0'
//    implementation files ('libs/RangersAppLog-Lite-cn-3.3.12.aar')
    implementation files('libs\\bjsk_sdk_libs_1.0.2.jar')
    implementation files('libs\\msa_mdid_1.0.13.jar')
    implementation 'com.android.support:multidex:1.0.3'
    api 'com.google.code.gson:gson:2.7'
//    implementation files('libs\\tutiaoSDK_3.3.12.jar')
    implementation 'com.bytedance.applog:RangersAppLog-Lite-cn:5.3.0'
    implementation files('libs\\SaaS_AppAnalytics_Android_SDK_V4.0.58.jar')
 
}
 
android {
    compileSdkVersion 27
 
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
 
    defaultConfig {
        minSdkVersion 19
        targetSdkVersion 27
        ndk {
            //选择要添加的对应cpu类型的.so库。
            abiFilters  'armeabi-v7a'
            // 还可以添加 'x86', 'x86_64', 'mips', 'mips64'
        }
//        multiDexEnabled true
        versionCode 2
        versionName '1.0.2'
        consumerProguardFiles 'proguard-unity.txt'
    }
 
    lintOptions {
        abortOnError false
    }
 
    aaptOptions {
        ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
    }
 
    packagingOptions {
        doNotStrip '*/armeabi-v7a/*.so'
    }
 
}