Skip to content

Commit

Permalink
Cleanup gradle and add own options
Browse files Browse the repository at this point in the history
  • Loading branch information
Perflyst committed Mar 25, 2019
1 parent 8430ee5 commit f4ef5e4
Showing 1 changed file with 11 additions and 17 deletions.
28 changes: 11 additions & 17 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
// Manifest version information!
def versionMajor = 1
def versionMinor = 8
def versionPatch = 1
def versionBuild = 0 // bump for dogfood builds, public betas, etc.

apply plugin: "com.android.application"

android {
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "net.nrask.notifyme"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
applicationId "com.perflyst.twire"
minSdkVersion 16
targetSdkVersion 28
versionCode 500
versionName "1.9.0"
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
}
Expand All @@ -22,18 +16,18 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
debug {
minifyEnabled false
applicationIdSuffix '.debug'
versionNameSuffix '-DEBUG'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

repositories {
maven { url "https://maven.fabric.io/public" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}

dependencies {
implementation fileTree(include: ["*.jar"], dir: "libs")

Expand All @@ -52,7 +46,7 @@ dependencies {
implementation "com.github.traex.rippleeffect:library:1.3"
implementation "com.github.rey5137:material:1.2.1"
implementation "com.andkulikov:transitionseverywhere:1.7.6"
implementation "com.github.sebastianrask:srjneeds:85306c8"
implementation "com.github.perflyst:srjneeds:85306c8"
implementation "biz.kasual:materialnumberpicker:1.2.1"
implementation "commons-codec:commons-codec:1.10"
implementation "com.google.guava:guava:24.1-jre"
Expand Down

0 comments on commit f4ef5e4

Please sign in to comment.