2021-12-12 17:38:23 +05:30
|
|
|
package xyz.btcland.libretube
|
|
|
|
|
|
|
|
import android.app.Activity
|
2021-12-14 21:45:53 +05:30
|
|
|
import android.content.Context
|
|
|
|
import android.content.DialogInterface
|
|
|
|
import android.content.Intent
|
2021-12-12 17:38:23 +05:30
|
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
|
|
import android.os.Bundle
|
2021-12-18 16:34:14 +05:30
|
|
|
|
2021-12-12 17:38:23 +05:30
|
|
|
|
|
|
|
class Player : Activity() {
|
2021-12-14 21:45:53 +05:30
|
|
|
|
2021-12-18 16:34:14 +05:30
|
|
|
|
2021-12-12 17:38:23 +05:30
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
super.onCreate(savedInstanceState)
|
|
|
|
setContentView(R.layout.activity_player)
|
2021-12-14 21:45:53 +05:30
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-12-18 16:34:14 +05:30
|
|
|
|