Skip to content

Commit

Permalink
Releases Flashbar version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Aritra Roy committed May 8, 2018
1 parent 79d86a2 commit 5cbb9e9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 34 deletions.
16 changes: 5 additions & 11 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,20 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion project.sdk
compileSdkVersion versions.sdkTarget

defaultConfig {
applicationId "com.andrognito.flashbardemo"
minSdkVersion project.minSdk
targetSdkVersion project.sdk
minSdkVersion versions.sdkMin
targetSdkVersion versions.sdkTarget
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation project(':flashbar')

implementation "com.android.support:appcompat-v7:$project.supportVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "com.android.support:appcompat-v7:$versions.supportVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$versions.kotlin"
}
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
buildscript {
ext.versions = [
sdkMin : 14,
sdkTarget : 27,
kotlin : '1.2.40',
supportVersion: '27.1.1'
]
ext.kotlin_version = '1.2.40'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
}

Expand All @@ -25,10 +31,4 @@ allprojects {

task clean(type: Delete) {
delete rootProject.buildDir
}

ext {
sdk = 27
minSdk = 14
supportVersion = "27.1.1"
}
23 changes: 9 additions & 14 deletions flashbar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ext {
siteUrl = 'https://github.com/aritraroy/Flashbar'
gitUrl = 'https://github.com/aritraroy/Flashbar.git'

libraryVersion = '1.0.1'
libraryVersion = '1.0.2'

developerId = 'aritraroy'
developerName = 'Aritra Roy'
Expand All @@ -27,26 +27,21 @@ ext {
}

android {
compileSdkVersion project.sdk
compileSdkVersion versions.sdkTarget

defaultConfig {
minSdkVersion project.minSdk
targetSdkVersion project.sdk
versionCode 2
versionName "1.0.1"
}
minSdkVersion versions.sdkMin
targetSdkVersion versions.sdkTarget
versionCode 3
versionName "1.0.2"

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
consumerProguardFiles 'proguard-rules.pro'
}
}

dependencies {
implementation "com.android.support:appcompat-v7:$project.supportVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "com.android.support:appcompat-v7:$versions.supportVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$versions.kotlin"
}

apply from: 'https://raw.githubusercontent.com/aritraroy/LibUtils/master/install.gradle'
Expand Down

0 comments on commit 5cbb9e9

Please # to comment.