File tree 4 files changed +11
-11
lines changed
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,7 @@ Added support for Interpolators + update demo Activity
12
12
1.0.2
13
13
-----
14
14
Fixed some issues related to rotating a device from portrait to landscape (and the other way around)
15
+
16
+ 1.0.3
17
+ -----
18
+ Removed attributes from AndroidManifest, because they may conflict with the ones in your app AndroidManifest
Original file line number Diff line number Diff line change 8
8
----
9
9
This repository also contains a demo project.
10
10
11
- ![ Demo] ( https://raw.githubusercontent.com/Blogcat/Android-ExpandableTextView/release/1.0.2 /demo.gif )
11
+ ![ Demo] ( https://raw.githubusercontent.com/Blogcat/Android-ExpandableTextView/release/1.0.3 /demo.gif )
12
12
13
13
Add dependency
14
14
--------------
@@ -32,7 +32,7 @@ library dependency
32
32
33
33
``` groovy
34
34
dependencies {
35
- compile ( 'at.blogc:expandabletextview:1.0.2@aar')
35
+ compile 'at.blogc:expandabletextview:1.0.3'
36
36
}
37
37
```
38
38
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
2
2
apply plugin : ' com.github.dcendents.android-maven'
3
3
apply plugin : ' com.jfrog.bintray'
4
4
5
- def fullVersion = ' 1.0.2 '
5
+ def fullVersion = ' 1.0.3 '
6
6
7
7
group = ' at.blogc'
8
8
version = fullVersion
Original file line number Diff line number Diff line change 13
13
See the License for the specific language governing permissions and
14
14
limitations under the License.
15
15
-->
16
- <manifest package =" at.blogc.expandabletextview"
17
- xmlns : android =" http://schemas.android.com/apk/res/android" >
16
+ <manifest
17
+ package =" at.blogc.expandabletextview"
18
+ xmlns : android =" http://schemas.android.com/apk/res/android" >
18
19
19
- <application
20
- android : allowBackup =" true"
21
- android : label =" @string/app_name"
22
- android : supportsRtl =" true" >
23
-
24
- </application >
20
+ <application />
25
21
26
22
</manifest >
You can’t perform that action at this time.
0 commit comments