Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apply plugin: 'com.android.application'

android {
namespace "com.logseq.app"
namespace "com.logseq.og"
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "com.logseq.app"
applicationId "com.logseq.og"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 92
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<activity
android:exported="true"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation"
android:name="com.logseq.app.MainActivity"
android:name="com.logseq.og.MainActivity"
android:label="@string/title_activity_main"
android:theme="@style/AppTheme.NoActionBarLaunch"
android:launchMode="singleTask">
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/assets/capacitor.plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
{
"pkg": "@logseq/capacitor-file-sync",
"classpath": "com.logseq.app.filesync.FileSyncPlugin"
"classpath": "com.logseq.og.filesync.FileSyncPlugin"
},
{
"pkg": "capacitor-voice-recorder",
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/java/com/logseq/app/FileUtil.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.logseq.app;
package com.logseq.og;

import android.annotation.TargetApi;
import android.content.ContentUris;
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/java/com/logseq/app/FolderPicker.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.logseq.app;
package com.logseq.og;

import android.content.ContentResolver;
import android.content.Context;
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/java/com/logseq/app/FsWatcher.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.logseq.app;
package com.logseq.og;

import android.system.ErrnoException;
import android.system.Os;
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/java/com/logseq/app/MainActivity.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.logseq.app;
package com.logseq.og;

import android.content.Intent;
import android.os.Bundle;
Expand Down
4 changes: 2 additions & 2 deletions android/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<resources>
<string name="app_name">Logseq OG</string>
<string name="title_activity_main">Logseq OG</string>
<string name="package_name">com.logseq.app</string>
<string name="custom_url_scheme">com.logseq.app</string>
<string name="package_name">com.logseq.og</string>
<string name="custom_url_scheme">com.logseq.og</string>
</resources>
2 changes: 1 addition & 1 deletion capacitor.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import fs from 'fs'
const version = fs.readFileSync('static/package.json', 'utf8').match(/"version": "(.*?)"/)?.at(1) ?? '0.0.0'

const config: CapacitorConfig = {
appId: 'com.logseq.app',
appId: 'com.logseq.og',
appName: 'Logseq OG',
bundledWebRuntime: false,
webDir: 'public',
Expand Down
Loading