实现了双屏摄像头显示,添加了部分代码
This commit is contained in:
+19
-1
@@ -7,6 +7,14 @@ plugins {
|
||||
}
|
||||
|
||||
android {
|
||||
signingConfigs {
|
||||
getByName("debug") {
|
||||
storeFile = file("./swkey.jks")
|
||||
storePassword = "123456"
|
||||
keyAlias = "android"
|
||||
keyPassword = "123456"
|
||||
}
|
||||
}
|
||||
namespace = "com.sw.dualscreen"
|
||||
compileSdk = 35
|
||||
|
||||
@@ -18,6 +26,9 @@ android {
|
||||
versionName = "1.0"
|
||||
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
ndk {
|
||||
abiFilters.addAll(listOf("armeabi-v7a"/*, "arm64-v8a"*/))
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
@@ -42,7 +53,14 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
// implementation(
|
||||
// fileTree(
|
||||
// mapOf(
|
||||
// "dir" to "libs",
|
||||
// "include" to listOf("*.aar", "*.jar")
|
||||
// )
|
||||
// )
|
||||
// )
|
||||
implementation(libs.androidx.core.ktx)
|
||||
implementation(libs.androidx.appcompat)
|
||||
implementation(libs.material)
|
||||
|
||||
Reference in New Issue
Block a user