Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
flibbertigibbet committed Jul 23, 2018
2 parents 60a5c36 + 421d5e5 commit 21559ed
Show file tree
Hide file tree
Showing 98 changed files with 3,010 additions and 439 deletions.
18 changes: 12 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ buildscript {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'

repositories {
maven { url 'https://maven.fabric.io/public' }
}

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.google.gms.oss.licenses.plugin'


android {
signingConfigs {
Expand All @@ -24,8 +26,9 @@ android {
applicationId "org.gophillygo.app"
minSdkVersion 19
targetSdkVersion 27
versionCode 4
versionName "1.0.3"
versionCode 10
versionName "1.0.8"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
Expand Down Expand Up @@ -95,10 +98,10 @@ dependencies {
implementation "com.google.android.gms:play-services-maps:$playServicesVersion"

// Android WorkManager
implementation 'android.arch.work:work-runtime:1.0.0-alpha03'
implementation 'android.arch.work:work-runtime:1.0.0-alpha04'

// Carousel
implementation 'com.github.flibbertigibbet:carouselview:1.0.5'
implementation 'com.synnapps:carouselview:0.1.5'

// Badges
implementation 'com.github.nekocode:Badge:2.0'
Expand All @@ -107,7 +110,7 @@ dependencies {
implementation('com.github.bumptech.glide:glide:4.6.1') {
exclude group: "com.android.support"
}
implementation ("com.github.bumptech.glide:recyclerview-integration:4.7.1") {
implementation("com.github.bumptech.glide:recyclerview-integration:4.7.1") {
transitive = false
}
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
Expand All @@ -131,6 +134,9 @@ dependencies {
annotationProcessor "com.google.dagger:dagger-android-processor:$daggerVersion"
annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion"

// OSS licensing
implementation 'com.google.android.gms:play-services-oss-licenses:16.0.0'

// testing
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
Expand Down
3 changes: 3 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,6 @@
# Crashlytics
-keep class com.google.android.gms.** { *; }
-keep class com.crashlytics.android.** { *; }

# Search
-keep class android.support.v7.widget.SearchView { *; }
Loading

0 comments on commit 21559ed

Please sign in to comment.