Removed old apk that was included in source code

This commit is contained in:
BONNEVILLE Geoffroy
2017-12-26 14:16:23 +01:00
parent 7ea94d22b8
commit b64ea74739
3 changed files with 11 additions and 10 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
*.iml
*.apk
.gradle
/local.properties
/.idea/workspace.xml

Binary file not shown.

View File

@@ -21,14 +21,14 @@ android {
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:27.0.2'
compile 'com.android.support:design:27.0.2'
compile 'com.android.support:support-v4:27.0.2'
compile 'com.android.support:percent:27.0.2'
compile 'com.android.support:recyclerview-v7:27.0.2'
compile 'com.google.android.gms:play-services-ads:11.8.0'
compile 'net.danlew:android.joda:2.9.7'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:design:27.0.2'
implementation 'com.android.support:support-v4:27.0.2'
implementation 'com.android.support:percent:27.0.2'
implementation 'com.android.support:recyclerview-v7:27.0.2'
implementation 'com.google.android.gms:play-services-ads:11.8.0'
implementation 'net.danlew:android.joda:2.9.7'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
}