Skip to content

Commit

Permalink
Merge branch 'release/1.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Cliffus committed Jun 21, 2016
2 parents 0de20df + 8d310ae commit c58061b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ Added support for Interpolators + update demo Activity
1.0.2
-----
Fixed some issues related to rotating a device from portrait to landscape (and the other way around)

1.0.3
-----
Removed attributes from AndroidManifest, because they may conflict with the ones in your app AndroidManifest
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Demo
----
This repository also contains a demo project.

![Demo](https://raw.githubusercontent.com/Blogcat/Android-ExpandableTextView/release/1.0.2/demo.gif)
![Demo](https://raw.githubusercontent.com/Blogcat/Android-ExpandableTextView/release/1.0.3/demo.gif)

Add dependency
--------------
Expand All @@ -32,7 +32,7 @@ library dependency

```groovy
dependencies {
compile ('at.blogc:expandabletextview:1.0.2@aar')
compile 'at.blogc:expandabletextview:1.0.3'
}
```

Expand Down
2 changes: 1 addition & 1 deletion expandabletextview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

def fullVersion = '1.0.2'
def fullVersion = '1.0.3'

group = 'at.blogc'
version = fullVersion
Expand Down
12 changes: 4 additions & 8 deletions expandabletextview/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,10 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest package="at.blogc.expandabletextview"
xmlns:android="http://schemas.android.com/apk/res/android">
<manifest
package="at.blogc.expandabletextview"
xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:allowBackup="true"
android:label="@string/app_name"
android:supportsRtl="true">

</application>
<application/>

</manifest>

0 comments on commit c58061b

Please sign in to comment.