Files
external_FadingEdgeLayout/app/build.gradle
2018-11-01 14:00:54 +08:00

30 lines
896 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "com.bosphere.fadingedgelayout"
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'androidx.appcompat:appcompat:1.0.0'
compile 'androidx.recyclerview:recyclerview:1.0.0'
compile 'androidx.gridlayout:gridlayout:1.0.0'
compile project(':fadingedgelayout')
// compile 'com.github.bosphere.android-fadingedgelayout:fadingedgelayout:1.0.0'
}