You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
354 B
12 lines
354 B
|
2 years ago
|
package com.example.kvast_sdk
|
||
|
|
|
||
|
|
import android.os.Bundle
|
||
|
|
import androidx.appcompat.app.AppCompatActivity
|
||
|
|
import com.example.vastlib.utils.encryptToByteArray
|
||
|
|
|
||
|
|
class MainActivity : AppCompatActivity() {
|
||
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||
|
|
super.onCreate(savedInstanceState)
|
||
|
|
setContentView(R.layout.activity_main)
|
||
|
|
}
|
||
|
|
}
|