Skip to content

Commit ffb47e6

Browse files
author
lighthx@outlook.com
committed
new file: .gitattributes
new file: .gitignore new file: android/build.gradle new file: android/libs/arm64-v8a/libhyphenate.so new file: android/libs/arm64-v8a/libhyphenate_av.so new file: android/libs/arm64-v8a/libhyphenate_av_recorder.so new file: android/libs/arm64-v8a/libsqlite.so new file: android/libs/armeabi-v7a/libhyphenate.so new file: android/libs/armeabi-v7a/libhyphenate_av.so new file: android/libs/armeabi-v7a/libhyphenate_av_recorder.so new file: android/libs/armeabi-v7a/libsqlite.so new file: android/libs/hyphenatechat_3.3.4.jar new file: android/libs/x86/libhyphenate.so new file: android/libs/x86/libhyphenate_av.so new file: android/libs/x86/libhyphenate_av_recorder.so new file: android/libs/x86/libsqlite.so new file: android/src/main/AndroidManifest.xml new file: android/src/main/java/com/easemob/RNReactNativeEasemobModule.java new file: android/src/main/java/com/easemob/RNReactNativeEasemobPackage.java new file: index.js new file: ios/HyphenateLite.framework/Headers/EMChatManagerDelegate.h new file: ios/HyphenateLite.framework/Headers/EMChatroom.h new file: ios/HyphenateLite.framework/Headers/EMChatroomManagerDelegate.h new file: ios/HyphenateLite.framework/Headers/EMChatroomOptions.h new file: ios/HyphenateLite.framework/Headers/EMClient.h new file: ios/HyphenateLite.framework/Headers/EMClientDelegate.h new file: ios/HyphenateLite.framework/Headers/EMCmdMessageBody.h new file: ios/HyphenateLite.framework/Headers/EMCommonDefs.h new file: ios/HyphenateLite.framework/Headers/EMContactManagerDelegate.h new file: ios/HyphenateLite.framework/Headers/EMConversation.h new file: ios/HyphenateLite.framework/Headers/EMCursorResult.h new file: ios/HyphenateLite.framework/Headers/EMDefine.h new file: ios/HyphenateLite.framework/Headers/EMDeviceConfig.h new file: ios/HyphenateLite.framework/Headers/EMError.h new file: ios/HyphenateLite.framework/Headers/EMErrorCode.h new file: ios/HyphenateLite.framework/Headers/EMFileMessageBody.h new file: ios/HyphenateLite.framework/Headers/EMGroup.h new file: ios/HyphenateLite.framework/Headers/EMGroupManagerDelegate.h new file: ios/HyphenateLite.framework/Headers/EMGroupOptions.h new file: ios/HyphenateLite.framework/Headers/EMGroupSharedFile.h new file: ios/HyphenateLite.framework/Headers/EMImageMessageBody.h new file: ios/HyphenateLite.framework/Headers/EMLocationMessageBody.h new file: ios/HyphenateLite.framework/Headers/EMMessage.h new file: ios/HyphenateLite.framework/Headers/EMMessageBody.h new file: ios/HyphenateLite.framework/Headers/EMMultiDevicesDelegate.h new file: ios/HyphenateLite.framework/Headers/EMOptions+PrivateDeploy.h new file: ios/HyphenateLite.framework/Headers/EMOptions.h new file: ios/HyphenateLite.framework/Headers/EMPageResult.h new file: ios/HyphenateLite.framework/Headers/EMPushOptions.h new file: ios/HyphenateLite.framework/Headers/EMTextMessageBody.h new file: ios/HyphenateLite.framework/Headers/EMVideoMessageBody.h new file: ios/HyphenateLite.framework/Headers/EMVoiceMessageBody.h new file: ios/HyphenateLite.framework/Headers/HyphenateLite.h new file: ios/HyphenateLite.framework/Headers/IEMChatManager.h new file: ios/HyphenateLite.framework/Headers/IEMChatroomManager.h new file: ios/HyphenateLite.framework/Headers/IEMContactManager.h new file: ios/HyphenateLite.framework/Headers/IEMGroupManager.h new file: ios/HyphenateLite.framework/HyphenateLite new file: ios/HyphenateLite.framework/Info.plist new file: ios/HyphenateLite.framework/Modules/module.modulemap new file: ios/HyphenateLite.framework/_CodeSignature/CodeResources new file: ios/RNReactNativeEasemob.h new file: ios/RNReactNativeEasemob.m new file: ios/RNReactNativeEasemob.podspec new file: ios/RNReactNativeEasemob.xcodeproj/project.pbxproj new file: ios/RNReactNativeEasemob.xcworkspace/contents.xcworkspacedata new file: package.json
1 parent dac798b commit ffb47e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+13380
-0
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pbxproj -text

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
2+
# OSX
3+
#
4+
.DS_Store
5+
6+
# node.js
7+
#
8+
node_modules/
9+
npm-debug.log
10+
yarn-error.log
11+
12+
13+
# Xcode
14+
#
15+
build/
16+
*.pbxuser
17+
!default.pbxuser
18+
*.mode1v3
19+
!default.mode1v3
20+
*.mode2v3
21+
!default.mode2v3
22+
*.perspectivev3
23+
!default.perspectivev3
24+
xcuserdata
25+
*.xccheckout
26+
*.moved-aside
27+
DerivedData
28+
*.hmap
29+
*.ipa
30+
*.xcuserstate
31+
project.xcworkspace
32+
33+
34+
# Android/IntelliJ
35+
#
36+
build/
37+
.idea
38+
.gradle
39+
local.properties
40+
*.iml
41+
42+
# BUCK
43+
buck-out/
44+
\.buckd/
45+
*.keystore
46+

android/build.gradle

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
buildscript {
3+
repositories {
4+
jcenter()
5+
}
6+
7+
dependencies {
8+
classpath 'com.android.tools.build:gradle:1.3.1'
9+
}
10+
}
11+
12+
apply plugin: 'com.android.library'
13+
14+
android {
15+
compileSdkVersion 23
16+
buildToolsVersion '25.0.0'
17+
useLibrary 'org.apache.http.legacy'
18+
defaultConfig {
19+
minSdkVersion 16
20+
targetSdkVersion 22
21+
versionCode 1
22+
versionName "1.0"
23+
}
24+
lintOptions {
25+
abortOnError false
26+
}
27+
sourceSets {
28+
main {
29+
jniLibs.srcDirs = ['libs']
30+
}
31+
}
32+
}
33+
34+
repositories {
35+
mavenCentral()
36+
}
37+
38+
dependencies {
39+
compile fileTree(include: ['*.jar'], dir: 'libs')
40+
compile 'com.facebook.react:react-native:+'
41+
compile 'com.android.support:appcompat-v7:23.4.0'
42+
compile 'com.google.android.gms:play-services-gcm:9.4.0'
43+
}
44+
1.97 MB
Binary file not shown.
7.38 MB
Binary file not shown.
2.57 MB
Binary file not shown.
646 KB
Binary file not shown.
1.03 MB
Binary file not shown.
4.81 MB
Binary file not shown.
2.52 MB
Binary file not shown.

0 commit comments

Comments
 (0)