Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amokfa committed Jul 8, 2022
1 parent f1e9391 commit b86431b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions configurator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ dependencies {

def rustBasePath = ".."
def archTriplets = [
// 'armeabi-v7a': 'armv7-linux-androideabi',
// 'arm64-v8a' : 'aarch64-linux-android',
'armeabi-v7a': 'armv7-linux-androideabi',
'arm64-v8a' : 'aarch64-linux-android',
'x86' : 'i686-linux-android',
// 'x86_64' : 'x86_64-linux-android',
'x86_64' : 'x86_64-linux-android',
]

// TODO: only pass --release if buildType is release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ class UplinkService : Service() {
val startAppIntent = PendingIntent.getActivity(
this,
0,
Intent(this, MainActivity::class.java),
Intent.FLAG_ACTIVITY_NEW_TASK
Intent(this, MainActivity::class.java).also {
it.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
},
PendingIntent.FLAG_IMMUTABLE
)
val notification = NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID)
.setOngoing(true)
Expand Down

0 comments on commit b86431b

Please sign in to comment.