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:
@@ -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,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" />
|
||||
|
||||
|
||||
+2
-2
@@ -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
-1
@@ -1,4 +1,4 @@
|
||||
package com.laconic_wallet
|
||||
package com.laconic.wallet
|
||||
|
||||
import android.app.Application
|
||||
import com.facebook.react.PackageList
|
||||
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user