blob: 209a7d3093cc7e319ac7dcbdcaa5f8e60562ae59 (
plain)
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
|
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "moe.yuuta.pageindicator"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':library')
implementation 'androidx.viewpager:viewpager:1.0.0-rc02'
implementation 'androidx.fragment:fragment:1.0.0-rc02'
}
|