Skip to content

Commit

Permalink
Release version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Vignesh committed Aug 4, 2015
1 parent 7f95445 commit 91c9f34
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@ ext {

compileSdkVersion = 22
buildToolsVersion = "22.0.1"

versionCode = Integer.parseInt(project.VERSION_CODE)
versionName = project.VERSION_NAME
}

ext.libraries = [
androidGradle: 'com.android.tools.build:gradle:1.3.0',
androidV7Support: 'com.android.support:appcompat-v7:22.1.+',
androidV7Support: 'com.android.support:appcompat-v7:22.1.0',
junit: 'junit:junit:4.11'
]
4 changes: 2 additions & 2 deletions confirmdialog-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId "com.vikki.logs.dialog.confirmdialog.sample"
minSdkVersion parent.ext.minSdkVersion
targetSdkVersion parent.ext.targetSdkVersion
versionCode 1
versionName "1.0"
versionCode parent.ext.versionCode
versionName parent.ext.versionName
}
buildTypes {
release {
Expand Down
6 changes: 3 additions & 3 deletions confirmdialog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ android {
defaultConfig {
minSdkVersion parent.ext.minSdkVersion
targetSdkVersion parent.ext.targetSdkVersion
versionCode 1
versionName "1.0"
versionCode parent.ext.versionCode
versionName parent.ext.versionName
}

buildTypes {
Expand Down Expand Up @@ -51,4 +51,4 @@ android.libraryVariants.all { variant ->
project.tasks.getByName("check").dependsOn checkstyle
}

apply from: 'https://raw.githubusercontent.com/vignesh-iopex/gradle-mvn-push/master/gradle-mvn-push.gradle'
apply from: 'https://raw.githubusercontent.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
VERSION_NAME=1.0.1
VERSION_CODE=2
VERSION_NAME=1.0.2
VERSION_CODE=3
GROUP=com.github.vignesh-iopex

POM_DESCRIPTION=A custom animated Android confirm dialog library
Expand Down

0 comments on commit 91c9f34

Please sign in to comment.