diff options
author | steckbrief <steckbrief@chefmail.de> | 2015-12-04 23:18:36 +0100 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2015-12-04 23:18:36 +0100 |
commit | 0086d5dc80dd95b1e8e4dcfe2d3d3090d260bb88 (patch) | |
tree | b1b600ca8aeed4136d0a536f5c5b7a540bf03f66 /libs/SwipyRefreshLayout/build.gradle | |
parent | 909dac7ac2bd2e76b2514a7bc6044e918abdf13f (diff) |
Implements FS#83: Reload from last received message
Diffstat (limited to 'libs/SwipyRefreshLayout/build.gradle')
-rw-r--r-- | libs/SwipyRefreshLayout/build.gradle | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libs/SwipyRefreshLayout/build.gradle b/libs/SwipyRefreshLayout/build.gradle new file mode 100644 index 00000000..68a75ec9 --- /dev/null +++ b/libs/SwipyRefreshLayout/build.gradle @@ -0,0 +1,24 @@ +apply plugin: 'com.android.library' + +android { + compileSdkVersion 22 + buildToolsVersion "22.0.1" + + defaultConfig { + minSdkVersion 9 + targetSdkVersion 22 + versionCode 1 + versionName "1.2.1" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + compile fileTree(dir: 'libs', include: ['*.jar']) + compile 'com.android.support:appcompat-v7:22.0.+' +} |