Created
October 25, 2016 05:06
-
-
Save wolkenschieber/aa0ed3df5c849203c03d6affeb010e3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
android { | |
compileSdkVersion 25 | |
buildToolsVersion "25.0.0" | |
defaultConfig { | |
applicationId "de.comp.pingme" | |
minSdkVersion 19 | |
targetSdkVersion 25 | |
versionCode 1 | |
versionName "0.1 prealpha" | |
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | |
} | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_1_7 | |
targetCompatibility JavaVersion.VERSION_1_7 | |
incremental false | |
} | |
lintOptions { | |
disable 'InvalidPackage' | |
} | |
dataBinding { | |
enabled = true | |
} | |
buildTypes { | |
release { | |
minifyEnabled true | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} | |
} | |
dependencies { | |
compile fileTree(include: ['*.jar'], dir: 'libs') | |
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { | |
exclude group: 'com.android.support', module: 'support-annotations' | |
}) | |
compile 'com.android.support:appcompat-v7:25.0.0' | |
compile 'com.android.support:recyclerview-v7:25.0.0' | |
testCompile 'junit:junit:4.12' | |
provided 'javax.annotation:jsr250-api:1.0' | |
annotationProcessor 'io.requery:requery-processor:1.0.0' | |
compile 'io.reactivex:rxandroid:1.2.1' | |
compile 'io.requery:requery:1.0.0' | |
compile 'io.requery:requery-android:1.0.0' | |
compile 'io.reactivex.rxjava2:rxjava:2.0.0-RC5' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment