Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Adds video and webview activities
Browse files Browse the repository at this point in the history
  • Loading branch information
r-oung committed Jul 21, 2020
1 parent 8841f81 commit dd41e40
Show file tree
Hide file tree
Showing 9 changed files with 325 additions and 187 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dependencies {

// Jitsi Meet
// https://github.com/jitsi/jitsi-maven-repository/tree/master/releases/org/jitsi/react/jitsi-meet-sdk
implementation ('org.jitsi.react:jitsi-meet-sdk:2.+') { transitive = true }
implementation('org.jitsi.react:jitsi-meet-sdk:2.+') { transitive = true }

// paho-mqtt
// https://github.com/eclipse/paho.mqtt.java
Expand All @@ -68,5 +68,5 @@ dependencies {

// temi
// https://github.com/robotemi/sdk
implementation 'com.robotemi:sdk:0.10.55'
implementation 'com.robotemi:sdk:0.10.+'
}
16 changes: 6 additions & 10 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,22 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/SkillTheme">
<activity android:name=".WebviewActivity"></activity>
<activity android:name=".VideoActivity" />
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<!-- MQTT service -->
<service
android:name="org.eclipse.paho.android.service.MqttService" />

<!-- temi Meta Data -->
</activity> <!-- MQTT service -->
<service android:name="org.eclipse.paho.android.service.MqttService" /> <!-- temi Meta Data -->
<meta-data
android:name="com.robotemi.sdk.metadata.SKILL"
android:value="@string/app_name"/>

android:value="@string/app_name" />
<meta-data
android:name="com.robotemi.sdk.metadata.KIOSK"
android:value="TRUE"/>
android:value="TRUE" />
</application>

</manifest>
Loading

0 comments on commit dd41e40

Please sign in to comment.