Skip to content

Commit 1fa777b

Browse files
committed
initial commit
1 parent bf521e1 commit 1fa777b

49 files changed

Lines changed: 1171 additions & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx
15+
local.properties
16+
certs/

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deploymentTargetDropDown.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
11
# CameraAPIChecker
2-
Simple app for checking values of all CameraCharacteristics
2+
3+
Simple app for checking all values of CameraCharacteristics
4+
5+
# Notice
6+
7+
**Minimum API level is 33** (Android 13)
8+
9+
# Screenshot
10+
11+
<div>
12+
<img src="./github_assets/screen1.jpeg" width=300/>
13+
<img src="./github_assets/screen2.jpeg" width=300/>
14+
</div>

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
plugins {
2+
id 'com.android.application'
3+
id 'org.jetbrains.kotlin.android'
4+
}
5+
6+
android {
7+
namespace 'it.baka.cameraapichecker'
8+
compileSdk 34
9+
10+
defaultConfig {
11+
applicationId "it.baka.cameraapichecker"
12+
minSdk 33
13+
targetSdk 34
14+
versionCode 1
15+
versionName "1.0"
16+
17+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
18+
vectorDrawables {
19+
useSupportLibrary true
20+
}
21+
}
22+
23+
buildTypes {
24+
release {
25+
minifyEnabled false
26+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
27+
}
28+
}
29+
compileOptions {
30+
sourceCompatibility JavaVersion.VERSION_1_8
31+
targetCompatibility JavaVersion.VERSION_1_8
32+
}
33+
kotlinOptions {
34+
jvmTarget = '1.8'
35+
}
36+
buildFeatures {
37+
compose true
38+
}
39+
composeOptions {
40+
kotlinCompilerExtensionVersion '1.4.8'
41+
}
42+
packagingOptions {
43+
resources {
44+
excludes += '/META-INF/{AL2.0,LGPL2.1}'
45+
}
46+
}
47+
}
48+
49+
dependencies {
50+
51+
implementation 'androidx.core:core-ktx:1.10.1'
52+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
53+
implementation 'androidx.activity:activity-compose:1.7.2'
54+
implementation "androidx.compose.ui:ui:$compose_version"
55+
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
56+
implementation 'androidx.compose.material3:material3:1.2.0-alpha03'
57+
implementation 'com.google.android.material:material:1.9.0'
58+
testImplementation 'junit:junit:4.13.2'
59+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
60+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
61+
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
62+
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
63+
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
64+
}

0 commit comments

Comments
 (0)