Change package name to com.laconic.wallet (#33)

* Change package name

* Refactor folder structure

* Remove older instances of file

* Change name in app.json

* Make address selectable

---------

Co-authored-by: Adw8 <adwait@deepstacksoft.com>
This commit is contained in:
Adwait Gharpure
2024-03-04 15:20:09 +05:30
committed by GitHub
co-authored by adwait
parent 85e5a5e9bc
commit a643f9f9b1
9 changed files with 12 additions and 41 deletions
+2 -2
View File
@@ -80,9 +80,9 @@ android {
buildToolsVersion rootProject.ext.buildToolsVersion
compileSdk rootProject.ext.compileSdkVersion
namespace "com.laconic_wallet"
namespace "com.laconic.wallet"
defaultConfig {
applicationId "com.laconic_wallet"
applicationId "com.laconic.wallet"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
+1 -1
View File
@@ -1,4 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.laconic.wallet">
<uses-permission android:name="android.permission.INTERNET" />
@@ -1,4 +1,4 @@
package com.laconic_wallet
package com.laconic.wallet
import com.facebook.react.ReactActivity
import com.facebook.react.ReactActivityDelegate
@@ -11,7 +11,7 @@ class MainActivity : ReactActivity() {
* Returns the name of the main component registered from JavaScript. This is used to schedule
* rendering of the component.
*/
override fun getMainComponentName(): String = "laconic_wallet"
override fun getMainComponentName(): String = "wallet"
/**
* Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
@@ -1,4 +1,4 @@
package com.laconic_wallet
package com.laconic.wallet
import android.app.Application
import com.facebook.react.PackageList
+1 -1
View File
@@ -1,4 +1,4 @@
rootProject.name = 'laconic_wallet'
rootProject.name = 'wallet'
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':app'
includeBuild('../node_modules/@react-native/gradle-plugin')