Skip to content

Commit f10b95d

Browse files
committed
rename
1 parent 03cd262 commit f10b95d

9 files changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ allprojects {
2626
**Step 2. 添加项目依赖**
2727
``` gradle
2828
dependencies {
29-
implementation 'com.github.SheHuan:NiceImageView:1.0.2'
29+
implementation 'com.github.SheHuan:NiceImageView:1.0.3'
3030
}
3131
```
3232
**Step 3. 在布局文件中添加CornerLabelView**
3333
```
34-
<com.shehuan.library.NiceImageView
34+
<com.shehuan.niv.NiceImageView
3535
android:layout_width="200dp"
3636
android:layout_height="200dp"
3737
android:layout_marginTop="10dp"

app/src/androidTest/java/com/shehuan/library/test/ExampleInstrumentedTest.java renamed to app/src/androidTest/java/com/shehuan/niv/test/ExampleInstrumentedTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.shehuan.library.test;
1+
package com.shehuan.niv.test;
22

33
import android.content.Context;
44
import android.support.test.InstrumentationRegistry;

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.shehuan.library.test">
3+
package="com.shehuan.niv.test">
44

55
<application
66
android:allowBackup="true"
@@ -9,7 +9,7 @@
99
android:roundIcon="@mipmap/ic_launcher_round"
1010
android:supportsRtl="true"
1111
android:theme="@style/AppTheme">
12-
<activity android:name="com.shehuan.library.test.MainActivity">
12+
<activity android:name="com.shehuan.niv.test.MainActivity">
1313
<intent-filter>
1414
<action android:name="android.intent.action.MAIN" />
1515

app/src/main/java/com/shehuan/library/test/MainActivity.java renamed to app/src/main/java/com/shehuan/niv/test/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.shehuan.library.test;
1+
package com.shehuan.niv.test;
22

33
import android.support.v7.app.AppCompatActivity;
44
import android.os.Bundle;

app/src/main/res/layout/activity_main.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
android:gravity="center_horizontal"
1313
android:orientation="vertical">
1414

15-
<com.shehuan.library.NiceImageView
15+
<com.shehuan.niv.NiceImageView
1616
android:id="@+id/nice_iv0"
1717
android:layout_width="200dp"
1818
android:layout_height="200dp"
1919
android:layout_marginTop="10dp"
2020
android:src="@drawable/cat"
2121
app:corner_radius="20dp" />
2222

23-
<com.shehuan.library.NiceImageView
23+
<com.shehuan.niv.NiceImageView
2424
android:id="@+id/nice_iv1"
2525
android:layout_width="200dp"
2626
android:layout_height="200dp"
@@ -30,7 +30,7 @@
3030
app:border_width="2dp"
3131
app:corner_radius="20dp" />
3232

33-
<com.shehuan.library.NiceImageView
33+
<com.shehuan.niv.NiceImageView
3434
android:id="@+id/nice_iv2"
3535
android:layout_width="200dp"
3636
android:layout_height="200dp"
@@ -43,15 +43,15 @@
4343
app:corner_top_left_radius="60dp"
4444
app:corner_top_right_radius="10dp" />
4545

46-
<com.shehuan.library.NiceImageView
46+
<com.shehuan.niv.NiceImageView
4747
android:id="@+id/nice_iv3"
4848
android:layout_width="200dp"
4949
android:layout_height="200dp"
5050
android:layout_marginTop="10dp"
5151
android:src="@drawable/cat"
5252
app:is_circle="true" />
5353

54-
<com.shehuan.library.NiceImageView
54+
<com.shehuan.niv.NiceImageView
5555
android:id="@+id/nice_iv4"
5656
android:layout_width="200dp"
5757
android:layout_height="200dp"
@@ -62,7 +62,7 @@
6262
app:is_circle="true" />
6363

6464

65-
<com.shehuan.library.NiceImageView
65+
<com.shehuan.niv.NiceImageView
6666
android:id="@+id/nice_iv5"
6767
android:layout_width="200dp"
6868
android:layout_height="200dp"

app/src/test/java/com/shehuan/library/test/ExampleUnitTest.java renamed to app/src/test/java/com/shehuan/niv/test/ExampleUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.shehuan.library.test;
1+
package com.shehuan.niv.test;
22

33
import org.junit.Test;
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.shehuan.library" />
2+
package="com.shehuan.niv" />

niceimageview/src/main/java/com/shehuan/library/NiceImageView.java renamed to niceimageview/src/main/java/com/shehuan/niv/NiceImageView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.shehuan.library;
1+
package com.shehuan.niv;
22

33

44
import android.content.Context;

niceimageview/src/main/java/com/shehuan/library/Utils.java renamed to niceimageview/src/main/java/com/shehuan/niv/Utils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.shehuan.library;
1+
package com.shehuan.niv;
22

33

44
import android.content.Context;

0 commit comments

Comments
 (0)