1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- android {
-
- compileSdkVersion 31
- defaultConfig {
-
- minSdkVersion 24
-
- targetSdkVersion 30
- versionName '0.9.3'
- versionCode 93
- }
-
- compileOptions {
- targetCompatibility JavaVersion.VERSION_1_8
- sourceCompatibility JavaVersion.VERSION_1_8
- }
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- }
- }
-
- buildTypes {
-
- debug {}
-
- preview {}
-
- release {}
- }
-
- lintOptions {
-
- disable 'HardcodedText'
-
- disable 'ContentDescription'
- }
- }
- afterEvaluate {
-
- if (android.defaultConfig.applicationId == null && "umeng" != getName()) {
-
- generateReleaseBuildConfig.enabled = false
- generatePreviewBuildConfig.enabled = false
- generateDebugBuildConfig.enabled = false
- }
- }
- dependencies {
-
- implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
-
- implementation 'androidx.appcompat:appcompat:1.4.2'
-
- implementation 'com.google.android.material:material:1.6.0'
-
- implementation 'com.blankj:utilcodex:1.31.0'
-
- implementation 'io.github.jeremyliao:live-event-bus-x:1.8.0'
-
- implementation "com.bytedance.tools.codelocator:codelocator-core:2.0.0"
- debugImplementation "com.bytedance.tools.codelocator:codelocator-lancet-all:2.0.0"
- debugImplementation 'com.github.ChickenHook:RestrictionBypass:2.2'
- previewImplementation "com.bytedance.tools.codelocator:codelocator-lancet-all:2.0.0"
- previewImplementation 'com.github.ChickenHook:RestrictionBypass:2.2'
- }
|