Skip to content

Commit

Permalink
Quick Update (#79)
Browse files Browse the repository at this point in the history
* Update dependencies
* Attempt to disable xml compression
* Update notification service code
* Update manifest to work with Next launcher
* Update AndroidManifest.xml
  • Loading branch information
jahirfiquitiva committed May 16, 2018
1 parent 0b300d3 commit 692438a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ android {
}

aaptOptions {
noCompress 'zw', 'zip', 'komp', 'klwp', 'kwgt', 'klck', 'kwch'
noCompress 'zw', 'zip', 'komp', 'klwp', 'kwgt', 'klck', 'kwch', 'xml'
}

sourceSets {
Expand Down
12 changes: 10 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<uses-permission android:name="com.android.vending.BILLING"/>

<application
android:name=".MyApplication"
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher"
Expand Down Expand Up @@ -156,9 +157,16 @@
<!-- Next Launcher -->
<intent-filter>
<action android:name="com.gtp.nextlauncher.theme"/>

<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="com.gtp.nextlauncher.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="com.gtp.nextlauncher.trial.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<!-- Nine Launcher -->
<intent-filter>
<action android:name="com.gridappsinc.launcher.theme.apk_action"/>
Expand Down Expand Up @@ -288,4 +296,4 @@

</application>

</manifest>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ package jahirfiquitiva.apps.blueprint.demo
/* TODO: Remove comment marks to enable
import com.onesignal.NotificationExtenderService
import com.onesignal.OSNotificationReceivedResult
import jahirfiquitiva.libs.frames.helpers.extensions.framesKonfigs
import jahirfiquitiva.libs.blueprint.helpers.utils.BPKonfigs
class NotificationService : NotificationExtenderService() {
override fun onNotificationProcessing(notification: OSNotificationReceivedResult?): Boolean =
!framesKonfigs.notificationsEnabled
!BPKonfigs(this).notificationsEnabled
}
*/
6 changes: 3 additions & 3 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ ext.versions = [
targetSdk : 27,
buildTools : '27.0.3',
// Versions:
versionCode : 114,
versionName : '1.1.4',
versionCode : 115,
versionName : '1.1.5',
// Gradle Plugins
gradle : '3.1.1',
kotlin : '1.2.41',
libs : '2.0',
// Dependencies
kuper : '1.3.1',
kuper : '1.3.2',
materialDrawer: '6.0.7',
counterFab : '1.0.3',
bridge : '5.1.2',
Expand Down

0 comments on commit 692438a

Please sign in to comment.