mirror of
https://github.com/zhigang1992/react-native-gifted-chat.git
synced 2026-04-29 04:35:46 +08:00
GiftedChat
This commit is contained in:
@@ -5,7 +5,7 @@ import re
|
||||
# - install Buck
|
||||
# - `npm start` - to start the packager
|
||||
# - `cd android`
|
||||
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US`
|
||||
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
|
||||
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
|
||||
# - `buck install -r android/app` - compile, install and run application
|
||||
#
|
||||
@@ -46,13 +46,13 @@ android_library(
|
||||
|
||||
android_build_config(
|
||||
name = 'build_config',
|
||||
package = 'com.giftedmessenger',
|
||||
package = 'com.giftedchat',
|
||||
)
|
||||
|
||||
android_resource(
|
||||
name = 'res',
|
||||
res = 'src/main/res',
|
||||
package = 'com.giftedmessenger',
|
||||
package = 'com.giftedchat',
|
||||
)
|
||||
|
||||
android_binary(
|
||||
|
||||
@@ -87,7 +87,7 @@ android {
|
||||
buildToolsVersion "23.0.1"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.giftedmessenger"
|
||||
applicationId "com.giftedchat"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 22
|
||||
versionCode 1
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.giftedmessenger"
|
||||
package="com.giftedchat"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0">
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.giftedmessenger;
|
||||
package com.giftedchat;
|
||||
|
||||
import com.facebook.react.ReactActivity;
|
||||
|
||||
@@ -10,6 +10,6 @@ public class MainActivity extends ReactActivity {
|
||||
*/
|
||||
@Override
|
||||
protected String getMainComponentName() {
|
||||
return "GiftedMessenger";
|
||||
return "GiftedChat";
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.giftedmessenger;
|
||||
package com.giftedchat;
|
||||
|
||||
import android.app.Application;
|
||||
import android.util.Log;
|
||||
@@ -1,3 +1,3 @@
|
||||
<resources>
|
||||
<string name="app_name">GiftedMessenger</string>
|
||||
<string name="app_name">GiftedChat</string>
|
||||
</resources>
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
rootProject.name = 'GiftedMessenger'
|
||||
rootProject.name = 'GiftedChat'
|
||||
|
||||
include ':app'
|
||||
|
||||
Reference in New Issue
Block a user