First professional project I took on as an android developer. The use of paypal library, firebase backend server, internal SQLite database and google maps library.

This commit is contained in:
2018-02-19 22:06:24 +11:00
parent 5315834772
commit 10de5828b5
90 changed files with 4763 additions and 0 deletions

26
build.gradle Normal file
View File

@@ -0,0 +1,26 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.0'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}