123456789101112131415161718192021222324252627282930313233343536 |
- apply plugin: 'com.android.library'
- apply plugin: 'de.mobilej.unmock'
-
- android {
- compileSdkVersion 22
- buildToolsVersion "22.0.1"
-
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 22
- versionCode 1
- versionName "0.2.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
-
- unMock {
- // URI to download the android-all.jar from. e.g. https://oss.sonatype.org/content/groups/public/org/robolectric/android-all/
- downloadFrom 'https://oss.sonatype.org/content/groups/public/org/robolectric/android-all/4.3_r2-robolectric-0/android-all-4.3_r2-robolectric-0.jar'
-
- keepStartingWith "org.json."
-
- keep "android.util.Base64"
- }
-
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- testCompile 'junit:junit:4.12'
- compile 'com.android.volley:volley:1.0.0'
- compile 'net.danlew:android.joda:2.9.4.2'
- }
|