feat(main): 迁移到 MVVM 并升级构建配置

- MainActivity/TestActivity 改用 DataBinding 和 ViewModel
- 移除 ButterKnife 和旧的 MVP Contact 类
- 升级 Gradle、Kotlin 及构建脚本
- 配置 CMake 以支持 16KB 页面大小
This commit is contained in:
2026-08-14 14:57:24 +08:00
parent dfb81fa39a
commit b6ab76793f
23 changed files with 808 additions and 898 deletions

View File

@@ -1,6 +1,8 @@
apply plugin: 'com.android.library'
android {
namespace "com.shehuan.niv"
compileSdkVersion 28
defaultConfig {
@@ -11,6 +13,8 @@ android {
}
buildTypes {
BCM310Debug {}
BCM310Release {}
MT6789Debug {}
MT6789Release {}
QZ15Debug {}

View File

@@ -1,2 +1 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shehuan.niv" />
<manifest package="com.shehuan.niv" />