Skip to content

Commit

Permalink
change typo in package name
Browse files Browse the repository at this point in the history
update to 1.0.1
  • Loading branch information
Lesilva committed Mar 27, 2015
1 parent 31cd35b commit 131aed1
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.weiwangcn.betterspinner.sample"
minSdkVersion 15
targetSdkVersion 22
versionCode 100
versionName "1.0.0"
versionName project.VERSION_NAME
versionCode Integer.parseInt(project.VERSION_CODE)
}

buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
@@ -1,5 +1,5 @@
VERSION_NAME=1.0.0
VERSION_CODE=100
VERSION_NAME=1.0.1
VERSION_CODE=101
GROUP=com.weiwangcn.betterspinner

POM_DESCRIPTION=Android Spinner in a Better Design
Expand Down
6 changes: 3 additions & 3 deletions library-material/build.gradle
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
versionName project.VERSION_NAME
versionCode Integer.parseInt(project.VERSION_CODE)
}
buildTypes {
release {
Expand All @@ -24,4 +24,4 @@ dependencies {
compile 'com.rengwuxian.materialedittext:library:1.8.3'
}

apply from: '../maven_push.gradle'
apply from: '../maven_push.gradle'
6 changes: 4 additions & 2 deletions library-material/src/main/AndroidManifest.xml
@@ -1,7 +1,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.weiwang.betterspinner.library.material">
package="com.weiwangcn.betterspinner.library.material">

<application android:allowBackup="true" android:label="@string/app_name">
<application
android:allowBackup="true"
android:label="@string/app_name">

</application>

Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
versionName project.VERSION_NAME
versionCode Integer.parseInt(project.VERSION_CODE)
}
buildTypes {
release {
Expand Down
4 changes: 3 additions & 1 deletion library/src/main/AndroidManifest.xml
@@ -1,7 +1,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.weiwangcn.betterspinner.library">

<application android:allowBackup="true" android:label="@string/app_name">
<application
android:allowBackup="true"
android:label="@string/app_name">

</application>

Expand Down

0 comments on commit 131aed1

Please sign in to comment.