Skip to content

Commit

Permalink
Remove basicvideochat references
Browse files Browse the repository at this point in the history
  • Loading branch information
goncalocostamendes committed Aug 7, 2023
1 parent fbc521e commit 720be4b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Video-Transformers-Kotlin/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
compileSdkVersion extCompileSdkVersion

defaultConfig {
applicationId "com.tokbox.sample.basicvideochat"
applicationId "com.tokbox.sample.videotransformers"
minSdkVersion extMinSdkVersion
targetSdkVersion extTargetSdkVersion
versionCode extVersionCode
Expand Down
2 changes: 1 addition & 1 deletion Video-Transformers-Kotlin/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tokbox.sample.basicvideochat" >
package="com.tokbox.sample.videotransformers" >

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tokbox.sample.basicvideochat
package com.tokbox.sample.videotransformers

import android.Manifest
import android.content.res.Resources
Expand All @@ -16,9 +16,9 @@ import com.opentok.android.*
import com.opentok.android.PublisherKit.*
import com.opentok.android.Session.SessionListener
import com.opentok.android.SubscriberKit.SubscriberListener
import com.tokbox.sample.basicvideochat.MainActivity
import com.tokbox.sample.basicvideochat.network.APIService
import com.tokbox.sample.basicvideochat.network.GetSessionResponse
import com.tokbox.sample.videotransformers.MainActivity
import com.tokbox.sample.videotransformers.network.APIService
import com.tokbox.sample.videotransformers.network.GetSessionResponse
import okhttp3.OkHttpClient
import okhttp3.logging.HttpLoggingInterceptor
import pub.devrel.easypermissions.AfterPermissionGranted
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tokbox.sample.basicvideochat
package com.tokbox.sample.videotransformers

import android.text.TextUtils

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tokbox.sample.basicvideochat
package com.tokbox.sample.videotransformers

import android.text.TextUtils
import android.webkit.URLUtil
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tokbox.sample.basicvideochat.network
package com.tokbox.sample.videotransformers.network

import retrofit2.Call
import retrofit2.http.GET
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tokbox.sample.basicvideochat.network
package com.tokbox.sample.videotransformers.network

import retrofit2.Call
import retrofit2.Callback
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tokbox.sample.basicvideochat.network
package com.tokbox.sample.videotransformers.network

import com.squareup.moshi.Json

Expand Down

0 comments on commit 720be4b

Please sign in to comment.