Skip to content

Instantly share code, notes, and snippets.

@guodong1111
Created October 26, 2017 03:52
Show Gist options
  • Save guodong1111/28d2974ada1775805f59b699b16282db to your computer and use it in GitHub Desktop.
Save guodong1111/28d2974ada1775805f59b699b16282db to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.gogomaper.meat"
minSdkVersion 21
targetSdkVersion 26
versionCode 40
versionName "2.0.0.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
signingConfigs {
release {
storeFile file("gogomaper.jks")
storePassword "gogomaper"
keyAlias "meat"
keyPassword "meat2017"
}
}
buildTypes {
release {
minifyEnabled true
signingConfig signingConfigs.release
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
javaMaxHeapSize "4g"
}
flavorDimensions "CheeseCall"
productFlavors {
develop {
dimension "CheeseCall"
}
product {
dimension "CheeseCall"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
configurations.all { //Resolve the library version conflict
resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.0'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':library:facebook')
implementation project(':library:imagepicker')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:support-v4:26.1.0'
implementation 'com.android.support:recyclerview-v7:26.1.0'
implementation 'com.android.support:cardview-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support:multidex:1.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.maps.android:android-maps-utils:0.5'
implementation 'com.google.android.gms:play-services-maps:11.4.2'
implementation 'com.google.android.gms:play-services-analytics:11.4.2'
implementation 'com.google.firebase:firebase-core:11.4.2'
implementation 'com.google.firebase:firebase-auth:11.4.2'
implementation 'com.google.firebase:firebase-messaging:11.4.2'
implementation 'com.google.firebase:firebase-database:11.4.2'
implementation 'com.google.code.gson:gson:2.8.1'
//GSON https://github.com/google/gson
implementation 'com.google.api-client:google-api-client-android:1.22.0' exclude module: 'httpclient'
implementation 'com.google.apis:google-api-services-vision:v1-rev357-1.22.0'
//Goocle cloud Vision https://cloud.google.com/vision/docs/reference/libraries
implementation 'com.parse:parse-android:1.13.1'
//Parse SDK https://github.com/ParsePlatform/Parse-SDK-Android
implementation 'com.parse.bolts:bolts-android:1.4.0'
//Parse SDK https://github.com/BoltsFramework/Bolts-Android
implementation 'com.amazonaws:aws-android-sdk-cognito:2.4.2'
//AWS https://github.com/aws/aws-sdk-android
implementation 'com.amazonaws:aws-android-sdk-core:2.4.2'
//AWS https://github.com/aws/aws-sdk-android
implementation 'com.amazonaws:aws-android-sdk-s3:2.4.2'
//AWS https://github.com/aws/aws-sdk-android
implementation 'com.squareup.picasso:picasso:2.5.2'
//Picasso(ImageLoader) https://github.com/square/picasso
// compile 'com.github.chrisbanes:PhotoView:1.3.1'
// //display Image https://github.com/chrisbanes/PhotoView
implementation 'com.airbnb.android:lottie:2.2.5'
//animation https://github.com/airbnb/lottie-android
implementation 'com.balysv.materialmenu:material-menu:2.0.0'
//material menu https://github.com/balysv/material-menu
implementation 'com.facebook.rebound:rebound:0.3.8'
//Rebound https://github.com/facebook/rebound
implementation 'com.github.nkzawa:socket.io-client:0.4.2'
//Socket https://socket.io/blog/native-socket-io-and-android/
implementation 'com.karumi:dexter:4.1.1'
//android6.0 permission https://github.com/Karumi/Dexter
implementation 'org.jbox2d:jbox2d-library:2.2.1.1'
//JBox2d https://github.com/jbox2d/jbox2d
implementation 'com.github.JakeWharton:ViewPagerIndicator:2.4.1'
//Parse ViewPagerIndicator https://github.com/JakeWharton/ViewPagerIndicator
implementation 'com.facebook.android:account-kit-sdk:4.24.0'
//SMS login https://github.com/facebook/facebook-android-sdk
implementation 'com.facebook.android:audience-network-sdk:4.26.0'
//Facebook AD https://developers.facebook.com/docs/audience-network/android
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.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