Skip to content

Commit 6002be3

Browse files
committed
rename module name.
1 parent f8cec4d commit 6002be3

22 files changed

+12
-9
lines changed

.idea/gradle.xml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818

1919
Use Gradle:
2020
``` java
21-
compile 'me.kareluo.ui:library:1.0.2'
21+
compile 'me.kareluo.ui:popmenu:1.0.3'
2222
```
2323

2424
Or Maven:
2525
``` maven
2626
<dependency>
2727
<groupId>me.kareluo.ui</groupId>
28-
<artifactId>library</artifactId>
29-
<version>1.0.2</version>
28+
<artifactId>popmenu</artifactId>
29+
<version>1.0.3</version>
3030
<type>pom</type>
3131
</dependency>
3232
```
@@ -80,6 +80,9 @@ menuView.setSites(PopupView.SITE_BOTTOM, PopupView.SITE_LEFT, PopupView.SITE_TOP
8080
#### v1.0.2
8181
- 增加气泡布局资源属性offsetSize,并修改部分资源属性名称
8282

83+
#### v1.0.3
84+
- 修改了module的名称,之前版本为`library`,后续版本为`popmenu`
85+
8386
# License
8487
``` license
8588
Copyright 2016 kareluo.

app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ dependencies {
2323
compile 'com.android.support:appcompat-v7:24.2.1'
2424
compile fileTree(dir: 'libs', include: ['*.jar'])
2525
testCompile 'junit:junit:4.12'
26-
compile project(path: ':library')
26+
compile project(path: ':popmenu')
2727
}
File renamed without changes.

library/build.gradle popmenu/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.jfrog.bintray'
33
apply plugin: 'com.github.dcendents.android-maven'
44

5-
version = "1.0.2"
5+
version = "1.0.3"
66

77
android {
88
compileSdkVersion 24
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ':app', ':library'
1+
include ':app', ':popmenu'

0 commit comments

Comments
 (0)