Skip to content

Commit

Permalink
Update for v3.5.0-beta.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sarsamurmu committed Sep 29, 2019
1 parent 0da71b5 commit 6a357f4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ dependencies {
* 6. Done
*/

implementation 'com.github.zixpo:candybar:v3.5.0-beta.6.4'
implementation 'com.github.zixpo:candybar:v3.5.0-beta.6.5'

// Remove '//' below to Enable OneSignal
//implementation 'com.onesignal:OneSignal:3.10.7'
Expand Down
10 changes: 9 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:networkSecurityConfig="@xml/network_config"
tools:replace="android:icon">

<activity
Expand Down Expand Up @@ -55,6 +56,13 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>

<activity-alias
android:name=".alias.Intent"
android:targetActivity=".activities.MainActivity"
android:enabled="false">

<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.DEFAULT" />
Expand Down Expand Up @@ -174,7 +182,7 @@

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</activity-alias>

<provider
android:name=".services.MuzeiService"
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@
<!-- Card -->
<color name="cardBackground">#FFFFFF</color>
<color name="cardBackgroundDark">#2C2C2C</color>
<color name="cardStroke">#11000000</color>
<color name="cardStrokeDark">#11000000</color>

<!-- Ripple -->
<color name="rippleColor">@color/navigationViewTextSelected</color>
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/values/dashboard_configurations.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@
* If you don't want to show this part, just leave this empty -->
<string name="google_play_dev">https://play.google.com/store/apps/dev?id=your_developer_id</string>

<!-- Set it to `true` if you want flat outlined card -->
<bool name="use_flat_card">false</bool>

<!-- CONFIG: NAVIGATION VIEW HEADER -->

<!-- Navigation view header image
Expand Down

0 comments on commit 6a357f4

Please sign in to comment.