Skip to content

Commit

Permalink
chore: Change Android package name
Browse files Browse the repository at this point in the history
  • Loading branch information
pokeghosst committed Aug 17, 2024
1 parent 24bbd7e commit 9a0c8cd
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
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 "org.pokeghost.book3"
namespace "art.gosuto.pokebook"
compileSdk rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "org.pokeghost.book3"
applicationId "art.gosuto.pokebook"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 3
Expand Down
2 changes: 1 addition & 1 deletion android/app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "APK",
"kind": "Directory"
},
"applicationId": "org.pokeghost.book3",
"applicationId": "art.gosuto.pokebook",
"variantName": "release",
"elements": [
{
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 @@ -8,7 +8,7 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:name="art.gosuto.pokebook.MainActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
android:exported="true"
android:label="@string/title_activity_main"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.pokeghost.book3;
package art.gosuto.pokebook;

import com.getcapacitor.BridgeActivity;

Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
tools:context="art.gosuto.pokebook.MainActivity">

<WebView
android:layout_width="match_parent"
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">PokeBook</string>
<string name="title_activity_main">PokeBook</string>
<string name="package_name">org.pokeghost.book3</string>
<string name="custom_url_scheme">org.pokeghost.book3</string>
<string name="package_name">art.gosuto.pokebook</string>
<string name="custom_url_scheme">art.gosuto.pokebook</string>
</resources>
2 changes: 1 addition & 1 deletion capacitor.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CapacitorConfig } from '@capacitor/cli';

const config: CapacitorConfig = {
appId: 'org.pokeghost.book3',
appId: 'art.gosuto.pokebook',
appName: 'PokeBook',
webDir: 'build',
server: {
Expand Down

0 comments on commit 9a0c8cd

Please sign in to comment.