refactor: 多处代码用 Kotlin 重写

This commit is contained in:
GoFly233 2020-08-12 22:45:15 +08:00 committed by HuanChengFly
parent 5f1ed3197d
commit 13b71c3835
3 changed files with 6 additions and 6 deletions

View File

@ -69,7 +69,7 @@ android {
}
compileSdkVersion 29
defaultConfig {
applicationId "top.goforce.tieba.post"
applicationId "com.huanchengfly.tieba.post"
minSdkVersion 21
targetSdkVersion 29
versionCode applicationVersionCode

View File

@ -13,7 +13,7 @@
android:title="@string/title_new_account"
android:summary="@string/tip_account_error">
<intent
android:targetPackage="top.goforce.tieba.post"
android:targetPackage="com.huanchengfly.tieba.post"
android:targetClass="com.huanchengfly.tieba.post.activities.LoginActivity"
android:action="android.intent.action.VIEW" />
</Preference>
@ -226,7 +226,7 @@
android:icon="@drawable/ic_round_info"
android:title="@string/title_about">
<intent
android:targetPackage="top.goforce.tieba.post"
android:targetPackage="com.huanchengfly.tieba.post"
android:targetClass="com.huanchengfly.tieba.post.activities.AboutActivity"
android:action="android.intent.action.VIEW" />
</Preference>

View File

@ -10,7 +10,7 @@
<intent
android:action="com.huanchengfly.tieba.post.action.OKSIGN"
android:targetClass="com.huanchengfly.tieba.post.activities.OKSignActivity"
android:targetPackage="top.goforce.tieba.post" />
android:targetPackage="com.huanchengfly.tieba.post" />
</shortcut>
<shortcut
android:icon="@drawable/ic_shortcut_collect"
@ -20,7 +20,7 @@
<intent
android:action="android.intent.action.VIEW"
android:targetClass="com.huanchengfly.tieba.post.activities.UserCollectActivity"
android:targetPackage="top.goforce.tieba.post" />
android:targetPackage="com.huanchengfly.tieba.post" />
</shortcut>
<shortcut
android:icon="@drawable/ic_shortcut_message"
@ -30,6 +30,6 @@
<intent
android:action="android.intent.action.VIEW"
android:targetClass="com.huanchengfly.tieba.post.activities.MessageActivity"
android:targetPackage="top.goforce.tieba.post" />
android:targetPackage="com.huanchengfly.tieba.post" />
</shortcut>
</shortcuts>