Created
May 24, 2018 09:38
-
-
Save griajobag/afd1902d0139c13160453d55610de6ce to your computer and use it in GitHub Desktop.
Rating
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 27 | |
defaultConfig { | |
applicationId "com.putuguna.ratinggoogleplaystore" | |
minSdkVersion 15 | |
targetSdkVersion 27 | |
versionCode 1 | |
versionName "1.0" | |
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} | |
compileOptions { | |
targetCompatibility 1.8 | |
sourceCompatibility 1.8 | |
} | |
} | |
dependencies { | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation 'com.android.support:appcompat-v7:27.1.1' | |
implementation 'com.android.support.constraint:constraint-layout:1.1.0' | |
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.support:cardview-v7:27.1.1" | |
implementation "com.jakewharton:butterknife:8.8.1" | |
implementation 'com.android.support:support-v4:27.1.1' | |
annotationProcessor "com.jakewharton:butterknife-compiler:8.8.1" | |
implementation "com.android.support:recyclerview-v7:27.1.1" | |
implementation 'me.zhanghai.android.materialratingbar:library:1.0.2' | |
implementation 'com.google.firebase:firebase-core:15.0.2' | |
implementation "com.google.firebase:firebase-firestore:15.0.0" | |
implementation 'com.google.code.gson:gson:2.8.1' | |
} | |
apply plugin: 'com.google.gms.google-services' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment