diff options
author | Alex Ning <chineseperson5@gmail.com> | 2018-07-26 15:04:44 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2018-07-26 15:04:44 +0000 |
commit | 1f2137dd365bc07b5fd38df22e54379933585994 (patch) | |
tree | f9ef585dda71db8bc809120761cac42e22dd1193 /app/build.gradle | |
download | infinity-for-reddit-1f2137dd365bc07b5fd38df22e54379933585994.tar infinity-for-reddit-1f2137dd365bc07b5fd38df22e54379933585994.tar.gz infinity-for-reddit-1f2137dd365bc07b5fd38df22e54379933585994.tar.bz2 infinity-for-reddit-1f2137dd365bc07b5fd38df22e54379933585994.tar.lz infinity-for-reddit-1f2137dd365bc07b5fd38df22e54379933585994.tar.xz infinity-for-reddit-1f2137dd365bc07b5fd38df22e54379933585994.tar.zst infinity-for-reddit-1f2137dd365bc07b5fd38df22e54379933585994.zip |
First commit
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 00000000..0d69fae8 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,48 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 28 + defaultConfig { + applicationId "ml.docilealligator.infinityforreddit" + minSdkVersion 21 + targetSdkVersion 28 + versionCode 1 + versionName "1.0" + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +repositories { + maven { + url "http://dl.bintray.com/rilixtech/maven" + } + mavenCentral() + google() +} + +dependencies { + implementation fileTree(include: ['*.jar'], dir: 'libs') + implementation 'com.android.support:appcompat-v7:28.0.0-alpha3' + implementation 'com.android.support:design:28.0.0-alpha3' + implementation 'com.android.support.constraint:constraint-layout:1.1.2' + implementation 'com.android.support:support-v4:28.0.0-alpha3' + testImplementation 'junit:junit:4.12' + androidTestImplementation 'com.android.support.test:runner:1.0.2' + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' + implementation 'com.android.volley:volley:1.1.0' + implementation 'de.hdodenhof:circleimageview:2.2.0' + implementation 'com.google.android.exoplayer:exoplayer:2.7.0' + implementation 'com.google.android.exoplayer:exoplayer-dash:2.7.0' + implementation 'com.android.support:customtabs:28.0.0-alpha3' + implementation 'com.alexvasilkov:gesture-views:2.5.2' + implementation 'com.android.support:cardview-v7:28.0.0-alpha3' + implementation 'com.github.bumptech.glide:glide:4.6.1' + implementation 'com.github.pwittchen:swipe-rx2:0.3.0' + annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1' +} |