mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
14 lines
395 B
Kotlin
14 lines
395 B
Kotlin
|
package xyz.btcland.libretube
|
||
|
|
||
|
import android.app.Activity
|
||
|
import androidx.appcompat.app.AppCompatActivity
|
||
|
import android.os.Bundle
|
||
|
|
||
|
class Player : Activity() {
|
||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||
|
super.onCreate(savedInstanceState)
|
||
|
setContentView(R.layout.activity_player)
|
||
|
val videoId=intent.getStringExtra("videoId")
|
||
|
println(videoId)
|
||
|
}
|
||
|
}
|