Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
918ed3a
Change to TypeScript and add more methods
xubmuajkub Aug 18, 2022
cfb54ca
Upgrade
xubmuajkub Aug 18, 2022
e27e9db
Update video and version
xubmuajkub Aug 18, 2022
04ab35a
Update authenticate and type
xubmuajkub Aug 24, 2022
5a40c4c
Add on going count
xubmuajkub Aug 25, 2022
0394972
Add mute camera off and camera switch to Android
xubmuajkub Aug 31, 2022
282895e
Complete basic use for android for android
xubmuajkub Aug 31, 2022
b8ce057
Update method for iOS
xubmuajkub Sep 1, 2022
a5bbba5
Add implementation for iOS
xubmuajkub Sep 1, 2022
7546c01
Update package version
xubmuajkub Sep 1, 2022
c960ada
Remove UI application
xubmuajkub Sep 2, 2022
55682ff
Update android nickname
xubmuajkub Sep 2, 2022
456a6ad
Update call info
xubmuajkub Sep 7, 2022
aa7c7c7
Update caller name
jason-supercoder Nov 13, 2022
ef32851
Update package.json
jason-supercoder Nov 13, 2022
af5c25b
fix: add missing params
jason-supercoder Dec 7, 2022
0b0246a
fix: add missing nickname
jason-supercoder Dec 7, 2022
6355f12
Update package.json
jason-supercoder Dec 7, 2022
1cf953e
Add missing type
jason-supercoder Dec 8, 2022
dfa58d9
Update SendBirdCalls.ts
jason-supercoder Dec 8, 2022
8076896
Update package.json
jason-supercoder Dec 8, 2022
dffcff4
Update RNSendBirdCallsModule.java
jason-supercoder Dec 14, 2022
08f34af
Update package.json
jason-supercoder Dec 14, 2022
296cea3
feat: add deauthenticate
jason-supercoder Dec 14, 2022
822520d
feat: add deauthenticate
jason-supercoder Dec 14, 2022
8423b47
feat: add deauthenticate
jason-supercoder Dec 14, 2022
e41a6c7
feat: add deauthenticate
jason-supercoder Dec 14, 2022
1c6bd24
fix: add deauthenticate
jason-supercoder Dec 14, 2022
6f5c518
Update package.json
jason-supercoder Dec 14, 2022
64af3c8
fix: error code
jason-supercoder Feb 2, 2023
b8ad571
Update package.json
jason-supercoder Feb 2, 2023
e557256
fix: enum value
jason-supercoder Feb 3, 2023
63e1390
fix: myRole
jason-supercoder Feb 3, 2023
095e25f
chore: bump version
jason-supercoder Feb 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 20 additions & 8 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def safeExtGet(prop, fallback) {
}

apply plugin: 'com.android.library'
apply plugin: 'maven'
apply plugin: 'maven-publish'

buildscript {
// The Android Gradle plugin is only required when opening the android folder stand-alone.
Expand Down Expand Up @@ -67,6 +67,10 @@ repositories {
url "$rootDir/../node_modules/jsc-android/dist"
}
google()
maven { url "https://repo.sendbird.com/public/maven" }
maven {
url = uri("${rootProject.projectDir}/maven-repo")
}
}

dependencies {
Expand Down Expand Up @@ -109,7 +113,8 @@ afterEvaluate { project ->
task androidJavadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += files(android.bootClasspath)
classpath += files(project.getConfigurations().getByName('compile').asList())
project.getConfigurations().getByName('implementation').setCanBeResolved(true)
classpath += files(project.getConfigurations().getByName('implementation').asList())
include '**/*.java'
}

Expand Down Expand Up @@ -138,12 +143,19 @@ afterEvaluate { project ->
archives androidJavadocJar
}

task installArchives(type: Upload) {
configuration = configurations.archives
repositories.mavenDeployer {
// Deploy to react-native-event-bridge/maven, ready to publish to npm
repository url: "file://${projectDir}/../android/maven"
configureReactNativePom pom
// task installArchives(type: Upload) {
// configuration = configurations.archives
// repositories.mavenDeployer {
// // Deploy to react-native-event-bridge/maven, ready to publish to npm
// repository url: "file://${projectDir}/../android/maven"
// configureReactNativePom pom
// }
// }
}
publishing {
repositories {
maven {
url = uri("file://${projectDir}/../android/maven")
}
}
}
2 changes: 2 additions & 0 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rnsendbirdcalls">

<uses-permission android:name="android.permission.VIBRATE" />
</manifest>
Loading