Hunter0x7c7
2024-11-21 979ae7c9ffb06359a15b633ab009773f5c964dd5
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
apply plugin: 'com.android.application'
 
android {
    compileSdkVersion 30
    buildToolsVersion "30.0.0"
    defaultConfig {
        applicationId 'com.codbking.example'
        minSdkVersion 21
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    lintOptions {
        abortOnError false
    }
    productFlavors {
    }
}
 
dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
 
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.github.codbking:AllItemView:+'
//    implementation 'com.github.codbking:AllItemView:v1.0.0'
    //    implementation 'com.github.codbking:PickTime:v1.0.0'
 
    implementation 'com.jakewharton:butterknife:8.4.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
 
    implementation project(':mylibrary')
 
}