Skip to content

Instantly share code, notes, and snippets.

@dkowsikpai
Last active August 4, 2020 15:26
Show Gist options
  • Select an option

  • Save dkowsikpai/3daddf970bbdc00abb3284823aa32020 to your computer and use it in GitHub Desktop.

Select an option

Save dkowsikpai/3daddf970bbdc00abb3284823aa32020 to your computer and use it in GitHub Desktop.
Android Dependencies
apply plugin: 'com.android.application'
//apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.syscodifier.solartech"
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation "androidx.multidex:multidex:2.0.1"
// Google Sign Up
implementation 'com.google.android.gms:play-services-auth:18.0.0'
// Facebook Sign up
implementation 'com.facebook.android:facebook-android-sdk:5.15.3'
// Recycler View
implementation "androidx.recyclerview:recyclerview:1.1.0"
// Download the image and show
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
// Progressbar
implementation 'com.akexorcist:RoundCornerProgressBar:2.0.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.google.android.gms:play-services-maps:17.0.0'
implementation 'com.google.android.gms:play-services-location:17.0.0'
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.8.1'
implementation 'com.squareup.retrofit2:converter-gson:2.8.1'
// implementation 'com.google.android.material:material:1.2.0-alpha05'
// implementation 'com.android.support:design:28.0.0-alpha1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment