forked from mirrors/rustdesk
rename RustDeskApplication to MainApplication (#13362)
Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
parent
0f34c50bd2
commit
f7a5a506f6
2 changed files with 4 additions and 4 deletions
|
|
@ -23,7 +23,7 @@
|
|||
</queries>
|
||||
|
||||
<application
|
||||
android:name=".RustDeskApplication"
|
||||
android:name=".MainApplication"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="RustDesk"
|
||||
android:requestLegacyExternalStorage="true"
|
||||
|
|
|
|||
|
|
@ -4,14 +4,14 @@ import android.app.Application
|
|||
import android.util.Log
|
||||
import ffi.FFI
|
||||
|
||||
class RustDeskApplication : Application() {
|
||||
class MainApplication : Application() {
|
||||
companion object {
|
||||
private const val TAG = "RustDeskApplication"
|
||||
private const val TAG = "MainApplication"
|
||||
}
|
||||
|
||||
override fun onCreate() {
|
||||
super.onCreate()
|
||||
Log.d(TAG, "RustDeskApplication onCreate")
|
||||
Log.d(TAG, "App start")
|
||||
FFI.onAppStart(applicationContext)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue