Skip to content

Commit 8eef7b1

Browse files
author
xiaoqi
committed
update name
1 parent 71b39c9 commit 8eef7b1

28 files changed

Lines changed: 52 additions & 56 deletions

File tree

.idea/gradle.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ buildscript {
1010
}
1111
dependencies {
1212
classpath 'com.android.tools.build:gradle:3.0.0'
13-
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
1413
classpath 'com.novoda:bintray-release:0.5.0'
1514
// NOTE: Do not place your application dependencies here; they belong
1615
// in the individual module build.gradle files
@@ -33,11 +32,11 @@ task clean(type: Delete) {
3332

3433
//添加
3534
ext {
36-
userOrg = 'xqandroid'
37-
groupId = 'com.xiaoqi'
38-
uploadName = 'AutoSave'
39-
publishVersion = '1.1.1'
40-
desc = 'A framework can automatically generate OnSaveInstanceState code'
41-
website = 'https://github.com/xiaoqiAndroid/AutoSave'
35+
userOrg = 'noober'
36+
groupId = 'com.noober.savehelper'
37+
uploadName = 'AutoSaver'
38+
publishVersion = '1.0.0'
39+
desc = "A light weght framework can automatically generate 'OnSaveInstanceState' code"
40+
website = 'https://github.com/JavaNoober/AutoSave'
4241
// gradlew clean build bintrayUpload -PbintrayUser=xiaoqiandroid -PbintrayKey=xxxxxxxxxxxxxxxx -PdryRun=false
4342
}

sample/build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
apply plugin: 'com.android.library'
2-
//apply plugin: 'android-apt'
32

43
android {
54
compileSdkVersion 26
@@ -34,9 +33,9 @@ dependencies {
3433
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
3534
exclude group: 'com.android.support', module: 'support-annotations'
3635
})
37-
compile 'com.android.support:appcompat-v7:+'
38-
testCompile 'junit:junit:4.12'
39-
compile 'com.xiaoqi:xqauto-api:1.1.0'
40-
annotationProcessor 'com.xiaoqi:xqauto-processor:1.1.0'
41-
compile 'com.xiaoqi:xqauto-savehelper:1.1.0'
36+
implementation 'com.android.support:appcompat-v7:+'
37+
testImplementation 'junit:junit:4.12'
38+
implementation project(':savehelper')
39+
implementation project(':savehelper-api')
40+
annotationProcessor project(':savehelper-processor')
4241
}

sample/src/main/java/com/xiaoqi/autosavesample/MainActivity.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
import android.support.v7.app.AppCompatActivity;
44
import android.os.Bundle;
55

6-
import com.xqand.api.NeedSave;
7-
import com.xqand.savehelper.SaveHelper;
6+
7+
import com.noober.api.NeedSave;
8+
import com.noober.savehelper.SaveHelper;
89

910
import java.util.ArrayList;
1011

sample/src/main/java/com/xiaoqi/autosavesample/MainFragment.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
import android.view.View;
77
import android.view.ViewGroup;
88

9-
import com.xqand.api.NeedSave;
10-
import com.xqand.savehelper.SaveHelper;
9+
10+
import com.noober.api.NeedSave;
11+
import com.noober.savehelper.SaveHelper;
1112

1213
import java.util.ArrayList;
1314

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ targetCompatibility = "1.7"
1010

1111
//添加
1212
publish {
13-
artifactId = 'xqauto-api'
13+
artifactId = 'savehelper-api'
1414
userOrg = rootProject.userOrg
1515
groupId = rootProject.groupId
1616
uploadName = rootProject.uploadName

xqauto-api/src/main/java/com/xqand/api/NeedSave.java renamed to savehelper-api/src/main/java/com/noober/api/NeedSave.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.xqand.api;
1+
package com.noober.api;
22

33
import java.lang.annotation.ElementType;
44
import java.lang.annotation.Retention;

0 commit comments

Comments
 (0)