fix: rename invalid identifiers starting with digit to fivechan

This commit is contained in:
plebeius
2025-10-18 23:06:21 +02:00
parent caa1daba54
commit 3360a41b00
10 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
apply plugin: 'com.android.application'
android {
namespace "5chan.android"
namespace "fivechan.android"
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "5chan.android"
applicationId "fivechan.android"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
+1 -1
View File
@@ -13,7 +13,7 @@
<activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
android:name="5chan.android.MainActivity"
android:name="fivechan.android.MainActivity"
android:label="@string/title_activity_main"
android:theme="@style/AppTheme.NoActionBarLaunch"
android:launchMode="singleTask"
@@ -1,5 +1,5 @@
{
"appId": "5chan.android",
"appId": "fivechan.android",
"appName": "5chan",
"webDir": "build",
"plugins": {
@@ -1,4 +1,4 @@
package 5chan.android;
package fivechan.android;
import android.app.Activity;
import android.content.Intent;
@@ -1,4 +1,4 @@
package 5chan.android;
package fivechan.android;
import android.content.Context;
import android.database.Cursor;
@@ -1,4 +1,4 @@
package 5chan.android;
package fivechan.android;
import android.os.Bundle;
import com.getcapacitor.BridgeActivity;
+2 -2
View File
@@ -2,6 +2,6 @@
<resources>
<string name="app_name">5chan</string>
<string name="title_activity_main">5chan</string>
<string name="package_name">5chan.android</string>
<string name="custom_url_scheme">5chan.android</string>
<string name="package_name">fivechan.android</string>
<string name="custom_url_scheme">fivechan.android</string>
</resources>