Skip to content

Commit

Permalink
Modify some detail.
Browse files Browse the repository at this point in the history
Adjust the gradle dependency name and remove the app_name in this
library.
  • Loading branch information
JimmyTai committed Nov 20, 2016
1 parent 3fc7716 commit 2ad50d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions utils/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.JimmyTai'
group = 'com.jimmytai.library'

android {
compileSdkVersion 25
Expand All @@ -9,8 +9,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
versionCode 2
versionName "1.0.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down
7 changes: 3 additions & 4 deletions utils/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<manifest package="com.jimmytai.library.utils"
xmlns:android="http://schemas.android.com/apk/res/android">

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

</application>

Expand Down
1 change: 0 additions & 1 deletion utils/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
<resources>
<string name="app_name">Utils</string>
</resources>

0 comments on commit 2ad50d8

Please sign in to comment.