Skip to content
This repository has been archived by the owner on Dec 8, 2019. It is now read-only.

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Sep 15, 2018
1 parent 62474a6 commit 987a060
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Aesthetic is an easy to use, fast, Rx-powered theme engine for Android applications.

It dynamically themes your apps at runtime, supporting AndroidX and Google Material widgets.

[ ![jCenter](https://api.bintray.com/packages/drummer-aidan/maven/aesthetic/images/download.svg) ](https://bintray.com/drummer-aidan/maven/aesthetic/_latestVersion)
[![Build Status](https://travis-ci.org/afollestad/aesthetic.svg)](https://travis-ci.org/afollestad/aesthetic)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/b085aa9e67d441bd960f1c6abce5764c)](https://www.codacy.com/app/drummeraidan_50/aesthetic?utm_source=github.com&utm_medium=referral&utm_content=afollestad/aesthetic&utm_campaign=Badge_Grade)
Expand Down Expand Up @@ -49,7 +51,7 @@ Add this to your module's `build.gradle` file:
```gradle
dependencies {
// ... other dependencies
implementation 'com.afollestad:aesthetic:0.6.1'
implementation 'com.afollestad:aesthetic:0.7.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ fun watchColor(
else -> fallback
}
}
}
}
Binary file modified sample.apk
Binary file not shown.
6 changes: 4 additions & 2 deletions sample/src/main/res/menu/coordinatorlayout.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
<menu xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<item
android:id="@+id/info"
android:icon="@drawable/ic_info"
android:title="@string/info"
app:showAsAction="ifRoom"/>
app:showAsAction="ifRoom"
tools:ignore="AppCompatResource"/>

<item
android:id="@+id/hello_world"
Expand Down
9 changes: 6 additions & 3 deletions sample/src/main/res/menu/main.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<menu
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">

<item
android:id="@+id/search"
android:icon="@drawable/ic_search"
android:title="@string/search"
app:actionViewClass="androidx.appcompat.widget.SearchView"
app:showAsAction="ifRoom|collapseActionView"/>
app:showAsAction="ifRoom|collapseActionView"
tools:ignore="AppCompatResource"/>

<item
android:id="@+id/hello_world"
Expand Down

0 comments on commit 987a060

Please sign in to comment.