Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ffe8f93b0a |
@@ -24,8 +24,8 @@ android {
|
|||||||
applicationId = "kr.tkrmagid.easyappliance"
|
applicationId = "kr.tkrmagid.easyappliance"
|
||||||
minSdk = 24
|
minSdk = 24
|
||||||
targetSdk = 35
|
targetSdk = 35
|
||||||
versionCode = (project.findProperty("verCode") as String?)?.toInt() ?: 10
|
versionCode = (project.findProperty("verCode") as String?)?.toInt() ?: 11
|
||||||
versionName = (project.findProperty("verName") as String?) ?: "0.3.7"
|
versionName = (project.findProperty("verName") as String?) ?: "0.3.8"
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,8 @@ object DeviceImages {
|
|||||||
|
|
||||||
val builtins: List<Builtin> = listOf(
|
val builtins: List<Builtin> = listOf(
|
||||||
Builtin("washer", "세탁기", R.drawable.img_washer),
|
Builtin("washer", "세탁기", R.drawable.img_washer),
|
||||||
Builtin("aircon", "에어컨", R.drawable.img_aircon),
|
Builtin("aircon", "벽걸이 에어컨", R.drawable.img_aircon),
|
||||||
|
Builtin("aircon_stand", "스탠드 에어컨", R.drawable.img_aircon_stand),
|
||||||
Builtin("fridge", "냉장고", R.drawable.img_fridge),
|
Builtin("fridge", "냉장고", R.drawable.img_fridge),
|
||||||
Builtin("tv", "TV", R.drawable.img_tv),
|
Builtin("tv", "TV", R.drawable.img_tv),
|
||||||
Builtin("device", "기타 기기", R.drawable.img_device),
|
Builtin("device", "기타 기기", R.drawable.img_device),
|
||||||
|
|||||||
17
app/src/main/res/drawable/img_aircon_stand.xml
Normal file
17
app/src/main/res/drawable/img_aircon_stand.xml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="96dp" android:height="96dp"
|
||||||
|
android:viewportWidth="48" android:viewportHeight="48">
|
||||||
|
<!-- tall standing body -->
|
||||||
|
<path android:fillColor="#1565C0"
|
||||||
|
android:pathData="M18,5 h12 a3,3 0 0 1 3,3 v32 a3,3 0 0 1 -3,3 h-12 a3,3 0 0 1 -3,-3 v-32 a3,3 0 0 1 3,-3 z" />
|
||||||
|
<!-- top intake vent -->
|
||||||
|
<path android:fillColor="#90CAF9" android:pathData="M19.5,9 h9 v3 h-9 z" />
|
||||||
|
<!-- display strip -->
|
||||||
|
<path android:fillColor="#FFFFFF" android:pathData="M21,15 h6 v2 h-6 z" />
|
||||||
|
<!-- lower air outlet -->
|
||||||
|
<path android:fillColor="#FFFFFF" android:pathData="M18.5,34 h11 v2.4 h-11 z" />
|
||||||
|
<!-- airflow curls under the outlet -->
|
||||||
|
<path android:fillColor="#00000000"
|
||||||
|
android:strokeColor="#42A5F5" android:strokeWidth="1.3"
|
||||||
|
android:pathData="M20,39 q1.5,2.5 3,0 M25,39 q1.5,2.5 3,0" />
|
||||||
|
</vector>
|
||||||
Reference in New Issue
Block a user