Skip to content

Commit

Permalink
chore!: change bundle identifier
Browse files Browse the repository at this point in the history
**this will require a reinstall.** closes #43
  • Loading branch information
Rexogamer committed Jan 19, 2025
1 parent f58db8d commit 19fc221
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ android {
buildToolsVersion rootProject.ext.buildToolsVersion
compileSdk rootProject.ext.compileSdkVersion

namespace "site.endl.taiku.rvmob"
namespace "app.upryzing.clerotri"
defaultConfig {
applicationId "site.endl.taiku.rvmob"
applicationId "app.upryzing.clerotri"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 10
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package site.endl.taiku.rvmob;
package app.upryzing.clerotri;

import com.facebook.react.ReactActivity
import com.facebook.react.ReactActivityDelegate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package site.endl.taiku.rvmob
package app.upryzing.clerotri

import android.app.Application
import com.facebook.react.PackageList
Expand Down
9 changes: 2 additions & 7 deletions src/lib/notifications/notifee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,8 @@ import notifee, {EventType} from '@notifee/react-native';
import type {Client, Message} from 'revolt.js';

export async function createChannel() {
const legacyChannel = (await notifee.getChannel('rvmob'));
if (legacyChannel) {
await notifee.deleteChannel('rvmob');
}

const channel = (await notifee.getChannel('clerotri'))
? 'rvmob'
? 'clerotri'
: await notifee.createChannel({
id: 'clerotri',
name: 'Clerotri',
Expand Down Expand Up @@ -96,7 +91,7 @@ export async function sendNotifeeNotification(
msg.author?.generateAvatarURL(),
pressAction: {
id: 'default',
launchActivity: 'site.endl.taiku.rvmob.MainActivity',
launchActivity: 'app.upryzing.clerotri.MainActivity',
},
channelId: defaultNotif,
},
Expand Down

0 comments on commit 19fc221

Please sign in to comment.