GiftedChat

This commit is contained in:
Farid from Safi
2016-07-29 13:46:47 +02:00
parent a8bda0fe1c
commit a43d2443a7
45 changed files with 224 additions and 2247 deletions

View File

@@ -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(

View File

@@ -87,7 +87,7 @@ android {
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.giftedmessenger"
applicationId "com.giftedchat"
minSdkVersion 16
targetSdkVersion 22
versionCode 1

View File

@@ -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">

View File

@@ -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";
}
}

View File

@@ -1,4 +1,4 @@
package com.giftedmessenger;
package com.giftedchat;
import android.app.Application;
import android.util.Log;

View File

@@ -1,3 +1,3 @@
<resources>
<string name="app_name">GiftedMessenger</string>
<string name="app_name">GiftedChat</string>
</resources>

View File

@@ -1,3 +1,3 @@
rootProject.name = 'GiftedMessenger'
rootProject.name = 'GiftedChat'
include ':app'