Skip to content

Commit

Permalink
Merge Solution-for-TeamUpMode-Http-obs-studio
Browse files Browse the repository at this point in the history
  • Loading branch information
PRWrl committed Sep 27, 2018
1 parent eb09d38 commit d03f460
Show file tree
Hide file tree
Showing 4,338 changed files with 677,763 additions and 15 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
node_modules
log
.DS_Store
rundir/
ipch/
Debug/
Release/
*.sdf
*.aps
*.suo
*.opensdf
*.user
10 changes: 10 additions & 0 deletions AgoraHQ-Android/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.iml
.gradle
/local.properties
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
.DS_Store
/build
/captures
.externalNativeBuild
1 change: 1 addition & 0 deletions AgoraHQ-Android/agora-hq-sig-sdk/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
35 changes: 35 additions & 0 deletions AgoraHQ-Android/agora-hq-sig-sdk/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 26

defaultConfig {
minSdkVersion 14
targetSdkVersion 26
versionCode 4
versionName "1.0.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
}

repositories {
flatDir { dirs '../push/aars' }
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
Binary file not shown.
Binary file not shown.
21 changes: 21 additions & 0 deletions AgoraHQ-Android/agora-hq-sig-sdk/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package io.agora.app;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static junit.framework.Assert.assertEquals;
import static org.junit.Assert.*;

/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("io.agora.agora_hq_sig_sdk.test", appContext.getPackageName());
}
}
35 changes: 35 additions & 0 deletions AgoraHQ-Android/agora-hq-sig-sdk/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.agora.signaling.hq">

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<application>

<service
android:name="io.rong.imlib.ipc.RongService"
android:exported="true"
android:process=":ipc" />

<service
android:name="io.rong.imlib.ReConnectService"
android:exported="true" />

<receiver
android:name="io.rong.imlib.ConnectChangeReceiver"
android:exported="true" />

<receiver
android:name="io.rong.imlib.HeartbeatReceiver"
android:process=":ipc" />

</application>

</manifest>
Loading

0 comments on commit d03f460

Please sign in to comment.