1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| apply plugin: 'com.android.library'
|
| android {
| compileSdkVersion 29
| defaultConfig {
| minSdkVersion 19
| targetSdkVersion 29
| }
| }
|
| dependencies {
| api fileTree(dir: 'libs', include: ['*.jar'])
| implementation 'androidx.appcompat:appcompat:1.1.0'
| implementation 'androidx.recyclerview:recyclerview:1.1.0'
| }
|
|
| apply from: 'generate.gradle'
|
|