Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed May 16, 2018
1 parent 71343ab commit 97ef8ba
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ android {
applicationId "jahirfiquitiva.apps.blueprint.demo"
minSdkVersion versions.minSdk
targetSdkVersion versions.targetSdk
versionCode 114
versionName "1.1.4"
versionCode 115
versionName "1.1.5"
vectorDrawables.useSupportLibrary = true
multiDexEnabled = true
proguardFiles 'proguard-android-optimize.txt', 'proguard-rules.pro'
Expand All @@ -70,7 +70,7 @@ android {
}

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

sourceSets {
Expand All @@ -87,7 +87,7 @@ android {

dependencies {
// Blueprint
implementation('me.jahirfiquitiva:Blueprint:1.1.4@aar') {
implementation('me.jahirfiquitiva:Blueprint:1.1.5@aar') {
transitive = true
}
// TODO: Remove comment marks to enable
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
}
*/
*/

0 comments on commit 97ef8ba

Please sign in to comment.