Skip to content

Commit c58061b

Browse files
committed
Merge branch 'release/1.0.3'
2 parents 0de20df + 8d310ae commit c58061b

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@ Added support for Interpolators + update demo Activity
1212
1.0.2
1313
-----
1414
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

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Demo
88
----
99
This repository also contains a demo project.
1010

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)
1212

1313
Add dependency
1414
--------------
@@ -32,7 +32,7 @@ library dependency
3232

3333
```groovy
3434
dependencies {
35-
compile ('at.blogc:expandabletextview:1.0.2@aar')
35+
compile 'at.blogc:expandabletextview:1.0.3'
3636
}
3737
```
3838

expandabletextview/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.github.dcendents.android-maven'
33
apply plugin: 'com.jfrog.bintray'
44

5-
def fullVersion = '1.0.2'
5+
def fullVersion = '1.0.3'
66

77
group = 'at.blogc'
88
version = fullVersion

expandabletextview/src/main/AndroidManifest.xml

+4-8
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,10 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
-->
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">
1819

19-
<application
20-
android:allowBackup="true"
21-
android:label="@string/app_name"
22-
android:supportsRtl="true">
23-
24-
</application>
20+
<application/>
2521

2622
</manifest>

0 commit comments

Comments
 (0)