Skip to content

Commit

Permalink
Merge pull request #69 from BoleLiu/dev
Browse files Browse the repository at this point in the history
Added QNRTC-API-Examples
  • Loading branch information
BoleLiu authored Apr 8, 2022
2 parents a4dd1de + beed3e4 commit f26720b
Show file tree
Hide file tree
Showing 83 changed files with 10,129 additions and 0 deletions.
80 changes: 80 additions & 0 deletions QNRTC-API-Examples/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# Built application files
*.apk
*.aar
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/
# Uncomment the following line in case you need and you don't have the release build type files in your app
# release/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# IntelliJ
*.iml
.idea/*
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml

# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/

# Google Services (e.g. APIs or Firebase)
# google-services.json

# Freeline
freeline.py
freeline/
freeline_project_description.json

# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/
2 changes: 2 additions & 0 deletions QNRTC-API-Examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# QNRTC-API-Examples
七牛实时音视频 API Examples
1 change: 1 addition & 0 deletions QNRTC-API-Examples/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
43 changes: 43 additions & 0 deletions QNRTC-API-Examples/app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
plugins {
id 'com.android.application'
}

android {
compileSdkVersion 31
buildToolsVersion '30.0.3'

defaultConfig {
applicationId "com.qiniu.droid.rtc.api.examples"
minSdkVersion 18
targetSdkVersion 30
versionCode 1
versionName "1.0.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
if (buildWithQNDroidRTCLibrary) {
implementation project(':library')
} else {
implementation fileTree(include: ['*.jar'], dir: 'libs')
}
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'com.squareup.okhttp3:okhttp:4.8.1'
implementation 'com.qiniu:happy-dns:0.2.18'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.24'
}
Binary file not shown.
21 changes: 21 additions & 0 deletions QNRTC-API-Examples/app/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
18 changes: 18 additions & 0 deletions QNRTC-API-Examples/app/release/output-metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": 2,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "com.qiniu.droid.rtc.api.examples",
"variantName": "release",
"elements": [
{
"type": "SINGLE",
"filters": [],
"versionCode": 1,
"versionName": "1.0.0",
"outputFile": "app-release.apk"
}
]
}
72 changes: 72 additions & 0 deletions QNRTC-API-Examples/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.qiniu.droid.rtc.api.examples">

<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.QNRTCAPIExamples">
<activity android:name=".activity.MainActivity"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".activity.CameraMicrophoneActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.CustomAVCaptureActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.ScreenCaptureActivity"
android:screenOrientation="portrait" />

<!-- foreground service for screen capture -->
<service
android:name=".service.ForegroundService"
android:foregroundServiceType="mediaProjection"
android:enabled="true" />

<activity android:name=".activity.MicrophoneOnlyActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.CustomAudioOnlyActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.DirectLiveStreamingActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.CustomMessageActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.MultiProfileActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.MediaStatisticsActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.AudioMixerActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.DefaultTranscodingLiveStreamingActivity"
android:screenOrientation="portrait" />
<activity android:name=".activity.CustomTranscodingLiveStreamingActivity"
android:screenOrientation="portrait" />
</application>

</manifest>
Binary file added QNRTC-API-Examples/app/src/main/assets/music.mp3
Binary file not shown.
Loading

0 comments on commit f26720b

Please sign in to comment.