refactor: 多处代码用 Kotlin 重写
This commit is contained in:
parent
5f1ed3197d
commit
13b71c3835
|
@ -69,7 +69,7 @@ android {
|
||||||
}
|
}
|
||||||
compileSdkVersion 29
|
compileSdkVersion 29
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "top.goforce.tieba.post"
|
applicationId "com.huanchengfly.tieba.post"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 29
|
targetSdkVersion 29
|
||||||
versionCode applicationVersionCode
|
versionCode applicationVersionCode
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
android:title="@string/title_new_account"
|
android:title="@string/title_new_account"
|
||||||
android:summary="@string/tip_account_error">
|
android:summary="@string/tip_account_error">
|
||||||
<intent
|
<intent
|
||||||
android:targetPackage="top.goforce.tieba.post"
|
android:targetPackage="com.huanchengfly.tieba.post"
|
||||||
android:targetClass="com.huanchengfly.tieba.post.activities.LoginActivity"
|
android:targetClass="com.huanchengfly.tieba.post.activities.LoginActivity"
|
||||||
android:action="android.intent.action.VIEW" />
|
android:action="android.intent.action.VIEW" />
|
||||||
</Preference>
|
</Preference>
|
||||||
|
@ -226,7 +226,7 @@
|
||||||
android:icon="@drawable/ic_round_info"
|
android:icon="@drawable/ic_round_info"
|
||||||
android:title="@string/title_about">
|
android:title="@string/title_about">
|
||||||
<intent
|
<intent
|
||||||
android:targetPackage="top.goforce.tieba.post"
|
android:targetPackage="com.huanchengfly.tieba.post"
|
||||||
android:targetClass="com.huanchengfly.tieba.post.activities.AboutActivity"
|
android:targetClass="com.huanchengfly.tieba.post.activities.AboutActivity"
|
||||||
android:action="android.intent.action.VIEW" />
|
android:action="android.intent.action.VIEW" />
|
||||||
</Preference>
|
</Preference>
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<intent
|
<intent
|
||||||
android:action="com.huanchengfly.tieba.post.action.OKSIGN"
|
android:action="com.huanchengfly.tieba.post.action.OKSIGN"
|
||||||
android:targetClass="com.huanchengfly.tieba.post.activities.OKSignActivity"
|
android:targetClass="com.huanchengfly.tieba.post.activities.OKSignActivity"
|
||||||
android:targetPackage="top.goforce.tieba.post" />
|
android:targetPackage="com.huanchengfly.tieba.post" />
|
||||||
</shortcut>
|
</shortcut>
|
||||||
<shortcut
|
<shortcut
|
||||||
android:icon="@drawable/ic_shortcut_collect"
|
android:icon="@drawable/ic_shortcut_collect"
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<intent
|
<intent
|
||||||
android:action="android.intent.action.VIEW"
|
android:action="android.intent.action.VIEW"
|
||||||
android:targetClass="com.huanchengfly.tieba.post.activities.UserCollectActivity"
|
android:targetClass="com.huanchengfly.tieba.post.activities.UserCollectActivity"
|
||||||
android:targetPackage="top.goforce.tieba.post" />
|
android:targetPackage="com.huanchengfly.tieba.post" />
|
||||||
</shortcut>
|
</shortcut>
|
||||||
<shortcut
|
<shortcut
|
||||||
android:icon="@drawable/ic_shortcut_message"
|
android:icon="@drawable/ic_shortcut_message"
|
||||||
|
@ -30,6 +30,6 @@
|
||||||
<intent
|
<intent
|
||||||
android:action="android.intent.action.VIEW"
|
android:action="android.intent.action.VIEW"
|
||||||
android:targetClass="com.huanchengfly.tieba.post.activities.MessageActivity"
|
android:targetClass="com.huanchengfly.tieba.post.activities.MessageActivity"
|
||||||
android:targetPackage="top.goforce.tieba.post" />
|
android:targetPackage="com.huanchengfly.tieba.post" />
|
||||||
</shortcut>
|
</shortcut>
|
||||||
</shortcuts>
|
</shortcuts>
|
Loading…
Reference in New Issue