浏览代码

convert settings.gradle to kts

Peter Cai 2 年之前
父节点
当前提交
70c29c195b
共有 2 个文件被更改,包括 23 次插入6 次删除
  1. 17 0
      .idea/deploymentTargetDropDown.xml
  2. 6 6
      settings.gradle.kts

+ 17 - 0
.idea/deploymentTargetDropDown.xml

@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="deploymentTargetDropDown">
+    <runningDeviceTargetSelectedWithDropDown>
+      <Target>
+        <type value="RUNNING_DEVICE_TARGET" />
+        <deviceKey>
+          <Key>
+            <type value="SERIAL_NUMBER" />
+            <value value="LUNA000000000447" />
+          </Key>
+        </deviceKey>
+      </Target>
+    </runningDeviceTargetSelectedWithDropDown>
+    <timeTargetWasSelectedWithDropDown value="2024-01-20T20:18:25.117832013Z" />
+  </component>
+</project>

+ 6 - 6
settings.gradle → settings.gradle.kts

@@ -13,9 +13,9 @@ dependencyResolutionManagement {
     }
 }
 rootProject.name = "OpenEUICC"
-include ':app'
-include ':libs:hidden-apis-stub'
-include ':libs:hidden-apis-shim'
-include ':libs:lpac-jni'
-include ':app-common'
-include ':app-unpriv'
+include(":app")
+include(":libs:hidden-apis-stub")
+include(":libs:hidden-apis-shim")
+include(":libs:lpac-jni")
+include(":app-common")
+include(":app-unpriv")