Skip to content

Commit

Permalink
Merge pull request #36 from Tapadoo/minor_fixes
Browse files Browse the repository at this point in the history
Removed RtL support in the manifest file. Updated resource names
  • Loading branch information
kpmmmurphy authored Mar 7, 2017
2 parents c2b238a + 2c85622 commit e2205e1
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## 1.0.6 - 2017-03-07
* Removed RtL support in Manifest
* Updated icon resource names to resolve conflicts

## 1.0.5 - 2017-03-06
* Add ability to hide the icon.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ all content.

```groovy
dependencies {
compile 'com.tapadoo.android:alerter:1.0.5'
compile 'com.tapadoo.android:alerter:1.0.6'
}
```

Expand Down Expand Up @@ -64,7 +64,7 @@ Alerter.create(this)
```java
Alerter.create(this)
.setText("Alert text...")
.setIcon(R.drawable.ic_face)
.setIcon(R.drawable.alerter_ic_face)
.show();
```

Expand Down
2 changes: 1 addition & 1 deletion alerter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: "maven-publish"
apply from: rootProject.file('quality.gradle')

def final String PACKAGE_NAME = "com.tapadoo.android"
def final String VERSION = "1.0.5"
def final String VERSION = "1.0.6"
def final String DESCRIPTION = "An Android Alerting Library"
def final String GITHUB_URL = "https://github.com/Tapadoo/Alerter"

Expand Down
4 changes: 1 addition & 3 deletions alerter/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
<!-- Our Min SDK is 16, UI Automator requires Min 18, so this will force its use -->
<uses-sdk tools:overrideLibrary="android.support.test.uiautomator.v18"/>

<application
android:supportsRtl="true">

<application>
<!--This is just an Activity for Testing from within src/androidTest-->
<activity
android:name=".MockActivity"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion alerter/src/main/res/layout/alerter_alert_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
android:layout_centerVertical="true"
android:maxHeight="@dimen/alerter_alert_icn_size"
android:maxWidth="@dimen/alerter_alert_icn_size"
android:src="@drawable/ic_notifications"
android:src="@drawable/alerter_ic_notifications"
android:tint="@android:color/white"/>

<LinearLayout
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/tapadoo/example/ExampleActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private void showAlertColoured() {
private void showAlertWithIcon() {
Alerter.create(ExampleActivity.this)
.setText("Alert text...")
.setIcon(R.drawable.ic_face)
.setIcon(R.drawable.alerter_ic_face)
.show();
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:2.3.0'
}
}

Expand Down
Binary file added documentation/full_demo.mp4
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Dec 28 10:00:20 PST 2015
#Mon Mar 06 09:39:22 GMT 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

0 comments on commit e2205e1

Please sign in to comment.