This commit is contained in:
404invalid-user 2025-05-26 01:11:40 +01:00
parent 9c981c41eb
commit 58bd895353
51 changed files with 2265 additions and 0 deletions

15
.gitignore vendored Normal file
View file

@ -0,0 +1,15 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties

21
LICENSE Normal file
View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2024 Calin Daniel Neamtu
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

16
README.md Normal file
View file

@ -0,0 +1,16 @@
# DataWedge Picklist OCR Demo
Demo Application demonstrating the integration and the usage of the PickList OCR feature.<br>
It includes code logic for:
- Profile creation
- PickList OCR enablement
- Parsing response and reconstruction of captured image
## Blog Post
This demo is part of a blog post which has been released on the Zebra Developer Portal where I'm explaining parts of this code step by step.
If you're interested, feel free to head over [here](https://developer.zebra.com/blog/integrating-datawedges-picklist-ocr-your-app).
## Disclaimer
Please be aware that this application is distributed as is without any guarantee of additional support or updates.

1
app/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

56
app/build.gradle.kts Normal file
View file

@ -0,0 +1,56 @@
plugins {
alias(libs.plugins.androidApplication)
alias(libs.plugins.jetbrainsKotlinAndroid)
}
android {
namespace = "com.bruvland.carphototaker2000"
compileSdk = 34
defaultConfig {
applicationId = "com.bruvland.carphototaker2000"
minSdk = 30
targetSdk = 34
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
buildFeatures {
viewBinding = true
}
}
dependencies {
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.appcompat)
implementation(libs.material)
implementation(libs.androidx.lifecycle.livedata.ktx)
implementation(libs.androidx.lifecycle.viewmodel.ktx)
implementation(libs.androidx.navigation.ui.ktx)
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
}

21
app/proguard-rules.pro vendored Normal file
View file

@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

View file

@ -0,0 +1,24 @@
package com.zebra.nilac.carphototaker2000
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Assert.*
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.bruvland.carphototaker2000", appContext.packageName)
}
}

View file

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="com.symbol.datawedge.permission.contentprovider" />
<queries>
<package android:name="com.symbol.datawedge" />
</queries>
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:targetApi="31" >
<activity
android:name=".MainActivity"
android:exported="true"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

View file

@ -0,0 +1,137 @@
package com.bruvland.carphototaker2000
import android.content.BroadcastReceiver
import android.content.Context
import android.content.Intent
import android.content.IntentFilter
import android.os.Build
import android.os.Bundle
import android.util.Log
import androidx.activity.viewModels
import androidx.appcompat.app.AppCompatActivity
import androidx.lifecycle.Observer
import androidx.recyclerview.widget.DefaultItemAnimator
import androidx.recyclerview.widget.LinearLayoutManager
import com.bruvland.carphototaker2000.databinding.ActivityMainBinding
import com.bruvland.carphototaker2000.util.AppConstants
import com.bruvland.carphototaker2000.util.DWUtil
import org.json.JSONArray
class MainActivity : AppCompatActivity() {
private lateinit var binding: ActivityMainBinding
private lateinit var resultsAdapter: ResultsAdapter
private val mainViewModel: MainViewModel by viewModels()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding.root)
setSupportActionBar(binding.toolbar)
registerReceivers()
setUpAdapter()
binding.scanButton.setOnClickListener {
launchScanningSession()
}
mainViewModel.processedOutputResult.observe(this, processedResultObserver)
//Create DW Profile if it doesn't exist already
sendBroadcast(DWUtil.generateDWBaseProfile(this))
}
private fun registerReceivers() {
val filter = IntentFilter()
filter.addAction("com.symbol.datawedge.api.RESULT_ACTION")
filter.addAction(AppConstants.DW_SCANNER_INTENT_ACTION)
filter.addCategory("android.intent.category.DEFAULT")
registerReceiver(dwReceiver, filter)
}
private fun setUpAdapter() {
resultsAdapter = ResultsAdapter()
binding.resultsList.apply {
layoutManager = LinearLayoutManager(this@MainActivity)
itemAnimator = DefaultItemAnimator()
adapter = resultsAdapter
}
}
private fun launchScanningSession() {
sendBroadcast(Intent().apply {
setPackage(AppConstants.DATAWEDGE_PACKAGE)
setAction(AppConstants.DATAWEDGE_API_ACTION)
putExtra(AppConstants.EXTRA_SOFT_SCAN_TRIGGER, "TOGGLE_SCANNING")
})
}
private val dwReceiver: BroadcastReceiver = object : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
val action = intent.action
val extras = intent.extras
var resultInfo = ""
if (extras != null && intent.hasExtra("RESULT_LIST")) {
if (extras.getString(AppConstants.COMMAND_IDENTIFIER_EXTRA)
.equals(AppConstants.PROFILE_CREATION_COMMAND_IDENTIFIER)
) {
val resultList: ArrayList<Bundle> =
extras.get("RESULT_LIST") as ArrayList<Bundle>
if (resultList.size > 0) {
var allSuccess = true
// Iterate through the result list for each module
for (result in resultList) {
val module = result.getString("MODULE")
val resultCode = result.getString("RESULT_CODE")
val subResultCode = result.getString("SUB_RESULT_CODE")
if (result.getString("RESULT").equals("FAILURE")
&& !module.equals("APP_LIST")
) {
// Profile creation failed for the module.
// Getting more information on what failed
allSuccess = false
resultInfo = "Module: $module\n" // Name of the module that failed
resultInfo += "Result code: $resultCode\n" // Information on the type of the failure
if (!subResultCode.isNullOrEmpty()) // More Information on the failure if exists
resultInfo += "\tSub Result code: $subResultCode\n"
break
} else {
// Profile creation success for the module.
resultInfo = "Module: " + result.getString("MODULE") + "\n"
resultInfo += "Result: " + result.getString("RESULT") + "\n"
}
}
if (allSuccess) {
Log.d(TAG, "Profile created successfully")
binding.scanButton.isEnabled = true
} else {
Log.e(TAG, "Profile creation failed!\n\n$resultInfo")
}
}
}
} else if (extras != null &&
action.equals(AppConstants.DW_SCANNER_INTENT_ACTION, ignoreCase = true)
) {
val jsonData: String = extras.getString(AppConstants.DATA_TAG)!!
mainViewModel.parseOCRResult(jsonData)
}
}
}
private val processedResultObserver: Observer<OutputResult> =
Observer { result ->
resultsAdapter.notifyAdapter(result)
binding.resultsList.scrollToPosition(0)
}
companion object {
const val TAG = "MainActivity"
}
}

View file

@ -0,0 +1,128 @@
package com.bruvland.carphototaker2000
import java.text.SimpleDateFormat
import java.util.Locale
import android.app.Application
import android.content.ContentResolver
import android.database.Cursor
import android.graphics.Bitmap
import android.net.Uri
import android.util.Log
import androidx.lifecycle.AndroidViewModel
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.viewModelScope
import com.bruvland.carphototaker2000.util.AppConstants
import com.bruvland.carphototaker2000.util.DWUtil
import com.bruvland.carphototaker2000.util.ImageProcessing
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import org.json.JSONArray
import org.json.JSONObject
import java.io.ByteArrayOutputStream
import java.util.Date
class MainViewModel(private var application: Application) : AndroidViewModel(application) {
val processedOutputResult: MutableLiveData<OutputResult> by lazy {
MutableLiveData<OutputResult>()
}
fun parseOCRResult(json: String) {
viewModelScope.launch(Dispatchers.IO) {
println(json)
val jsonArray = JSONArray(json)
val jsonObject = jsonArray.getJSONObject(0)
val uri = if (jsonObject.has(AppConstants.KEY_STRING_URI)) {
jsonObject.getString("uri")
} else {
""
}
//
//if (uri.isEmpty() || jsonArray.length() == 1) {
// processedOutputResult.postValue(
// OutputResult(
// DWUtil.extractStringDataFromJson(jsonArray[0] as JSONObject), Date(), null
// )
// )
// return@launch
//}
//Extract image from provided URI
val baos = ByteArrayOutputStream()
var nextURI: String? = uri
val contentResolver: ContentResolver = application.contentResolver
// Loop to collect all the data from the URIs
while (!nextURI.isNullOrEmpty()) {
val cursor = contentResolver.query(Uri.parse(nextURI), null, null, null, null)
cursor?.use {
nextURI = if (it.moveToFirst()) {
val rawData = it.getBlob(it.getColumnIndex(AppConstants.RAW_DATA))
baos.write(rawData)
it.getString(it.getColumnIndex(AppConstants.DATA_NEXT_URI))
} else {
null
}
}
}
// Extract image data from the JSON object
val width = jsonObject.getInt(AppConstants.IMAGE_WIDTH)
val height = jsonObject.getInt(AppConstants.IMAGE_HEIGHT)
val stride = jsonObject.getInt(AppConstants.STRIDE)
val orientation = jsonObject.getInt(AppConstants.ORIENTATION)
val imageFormat = jsonObject.getString(AppConstants.IMAGE_FORMAT)
// Decode the image
val bitmap: Bitmap = ImageProcessing.getInstance().getBitmap(
baos.toByteArray(), imageFormat, orientation, stride, width, height
)
//save photo to file
val timestamp: String = SimpleDateFormat("yyyyMMdd_HHmmss", Locale.getDefault()).format(Date())
val photoName = "car-photo_${timestamp}.jpg";
val contentValues = android.content.ContentValues();
contentValues.put(android.provider.MediaStore.MediaColumns.RELATIVE_PATH, "Pictures/OCR")
contentValues.put(android.provider.MediaStore.MediaColumns.DISPLAY_NAME, photoName)
contentValues.put(android.provider.MediaStore.MediaColumns.MIME_TYPE, "image/jpeg")
val appthing = application.contentResolver;
val imageUri = appthing.insert(android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI, contentValues)
if (imageUri != null) {
val outputStream = appthing.openOutputStream(imageUri)
if (outputStream != null) {
try {
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, outputStream)
Log.d(TAG, "Image saved to Photos: $imageUri")
} finally {
outputStream.close()
}
} else {
Log.e(TAG, "Failed to open output stream for image URI")
}
} else {
Log.e(TAG, "Failed to insert image into MediaStore")
}
processedOutputResult.postValue(
OutputResult(
Date(), bitmap
)
)
}
}
companion object {
const val TAG = "MainViewModel"
}
}

View file

@ -0,0 +1,11 @@
package com.bruvland.carphototaker2000
import android.graphics.Bitmap
import java.util.Date
data class OutputResult(
var date: Date,
var image: Bitmap? = null
)

View file

@ -0,0 +1,66 @@
package com.bruvland.carphototaker2000
import android.content.Context
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.recyclerview.widget.RecyclerView
import com.bruvland.carphototaker2000.databinding.ResultRowBinding
import java.text.SimpleDateFormat
import java.util.Locale
class ResultsAdapter : RecyclerView.Adapter<ResultsAdapter.ViewHolder>() {
private val dateOutputFormatter = SimpleDateFormat("dd/MM/yyyy HH:mm", Locale.getDefault())
private lateinit var mInflater: LayoutInflater
private lateinit var mContext: Context
private var mResultsList: MutableList<OutputResult> = ArrayList()
override fun onCreateViewHolder(
parent: ViewGroup,
viewType: Int
): ViewHolder {
mContext = parent.context
mInflater = LayoutInflater.from(mContext)
val view = ResultRowBinding.inflate(
LayoutInflater.from(parent.context),
parent,
false
)
return ViewHolder(view)
}
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
val result = mResultsList[position]
holder.mBinder.date.text = dateOutputFormatter.format(result.date)
if (result.image != null) {
holder.mBinder.capturedImage.apply {
visibility = View.VISIBLE
setImageBitmap(result.image)
}
} else {
View.GONE
}
}
override fun getItemCount(): Int {
return mResultsList.size
}
fun notifyAdapter(item: OutputResult) {
mResultsList.add(0, item)
notifyItemInserted(0)
}
class ViewHolder internal constructor(binding: ResultRowBinding) :
RecyclerView.ViewHolder(binding.root) {
var mBinder = binding
}
}

View file

@ -0,0 +1,29 @@
package com.bruvland.carphototaker2000.util
object AppConstants {
const val WORKFLOW_MODE = "freeform_image_capture" // or document_capture
const val PROFILE_NAME = "ORC img capture"
const val DATAWEDGE_PACKAGE = "com.symbol.datawedge"
const val EXTRA_SOFT_SCAN_TRIGGER = "com.symbol.datawedge.api.SOFT_SCAN_TRIGGER"
const val DATAWEDGE_API_ACTION = "com.symbol.datawedge.api.ACTION"
const val DW_SCANNER_INTENT_ACTION = "com.zebra.nilac.dwpicklistocrdemo.SCANNER"
const val KEY_STRING_DATA = "string_data"
const val KEY_STRING_URI = "uri"
const val DATA_NEXT_URI = "next_data_uri"
const val STRIDE = "stride"
const val RAW_DATA = "raw_data"
const val ORIENTATION = "orientation"
const val IMAGE_FORMAT = "imageformat"
const val IMAGE_WIDTH = "width"
const val IMAGE_HEIGHT = "height"
const val DATA_TAG = "com.symbol.datawedge.data"
const val COMMAND_IDENTIFIER_EXTRA = "COMMAND_IDENTIFIER"
const val PROFILE_CREATION_COMMAND_IDENTIFIER = "CREATE_PROFILE"
}

View file

@ -0,0 +1,211 @@
package com.bruvland.carphototaker2000.util
import android.content.Context
import android.content.Intent
import android.database.Cursor
import android.graphics.Bitmap
import android.net.Uri
import android.os.Bundle
import android.util.Log
import android.widget.ImageView
import com.bruvland.carphototaker2000.OutputResult
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import org.json.JSONArray
import org.json.JSONException
import org.json.JSONObject
import java.io.ByteArrayOutputStream
import java.io.IOException
object DWUtil {
private const val TAG = "DWUtil"
fun generateDWBaseProfile(context: Context): Intent {
val bMain = Bundle().apply {
putString("PROFILE_NAME", AppConstants.PROFILE_NAME)
putString("PROFILE_ENABLED", "true")
putString("CONFIG_MODE", "CREATE_IF_NOT_EXIST")
putString("RESET_CONFIG", "true")
}
val configApplicationList = Bundle().apply {
putString("PACKAGE_NAME", context.packageName)
putStringArray("ACTIVITY_LIST", arrayOf("*"))
}
val intentModuleParamList = Bundle().apply {
putString("intent_output_enabled", "true")
putString("intent_action", AppConstants.DW_SCANNER_INTENT_ACTION)
putInt("intent_delivery", 2)
}
val intentModule = Bundle().apply {
putString("PLUGIN_NAME", "INTENT")
putString("RESET_CONFIG", "true")
putBundle("PARAM_LIST", intentModuleParamList)
}
val keystrokeModuleParamList = Bundle().apply {
putString("keystroke_output_enabled", "false")
}
val keystrokeModule = Bundle().apply {
putString("PLUGIN_NAME", "KEYSTROKE")
putString("RESET_CONFIG", "true")
putBundle("PARAM_LIST", keystrokeModuleParamList)
}
bMain.putParcelableArrayList(
"PLUGIN_CONFIG", arrayListOf(
intentModule,
keystrokeModule,
//enablePickListOCR()
)
)
bMain.putParcelableArray("APP_LIST", arrayOf(configApplicationList))
return Intent().apply {
action = "com.symbol.datawedge.api.ACTION"
setPackage("com.symbol.datawedge")
putExtra("com.symbol.datawedge.api.SET_CONFIG", bMain)
putExtra("SEND_RESULT", "COMPLETE_RESULT")
putExtra("COMMAND_IDENTIFIER", AppConstants.PROFILE_CREATION_COMMAND_IDENTIFIER)
}
}
private fun enablePickListOCR(): Bundle {
val bPickListOcr = Bundle().apply {
putString("module", "MlKitExModule")
putBundle("module_params", Bundle().apply {
putString("session_timeout", "3000") //Integer Range 0 60000
putString("illumination", "off") //on - off
putString("output_image", "2") // 0 - Disabled, 2 - Cropped Image
putString(
"script",
"0"
) // 0 - Latin, 1 - Latin & Chinese, 2 - Latin and Japanese, 3 - Latin and Korean, 4 Latin and Devanagari
putString("confidence_level", "70") // Integer range 0-100
putString("text_structure", "0") // 0 - Single Word, 1- Single Line
putString(
"picklist_mode",
"0"
) // 0 - OCR or Barcode, 1 - OCR Only, 2 - Barcode Only
putParcelableArrayList("rules",
arrayListOf(
Bundle().apply {
putParcelableArrayList("rule_list", createOCRRules())
putString("rule_param_id", "report_ocr_data")
}
)
)
})
}
val bPickListBarcode = Bundle().apply {
putString("module", "BarcodeDecoderModule")
putBundle("module_params", Bundle().apply {
putParcelableArrayList("rules",
arrayListOf(
Bundle().apply {
putParcelableArrayList("rule_list", createBarcodeRules())
putString("rule_param_id", "report_barcode_data")
}
)
)
})
}
val bConfigWorkflowParamList = Bundle().apply {
putString("workflow_name", "picklist_ocr")
putString("workflow_input_source", "2")
putParcelableArrayList("workflow_params", arrayListOf(bPickListOcr, bPickListBarcode))
}
val bConfigWorkflow = Bundle().apply {
putString("PLUGIN_NAME", "WORKFLOW")
putString("RESET_CONFIG", "true")
putString("workflow_input_enabled", "true")
putString("selected_workflow_name", "picklist_ocr")
putString("workflow_input_source", "2") //1 - Imager 2 - Camera
putParcelableArrayList("PARAM_LIST", arrayListOf(bConfigWorkflowParamList))
}
Log.i(TAG, "Creating DW Profile unless it doesn't exists already")
return bConfigWorkflow
}
private fun createBarcodeRules(): ArrayList<Bundle> {
val ean8Rule = Bundle().apply {
putString("rule_name", "EAN8")
putBundle("criteria", Bundle().apply {
putParcelableArrayList(
"identifier", arrayListOf(
Bundle().apply {
putString("criteria_key", "starts_with")
putString("criteria_value", "58")
}
))
putStringArray("symbology", arrayOf("decoder_ean8"))
})
putParcelableArrayList("actions", arrayListOf(
Bundle().apply {
putString("action_key", "report")
putString("action_value", "")
}
))
}
return arrayListOf(ean8Rule)
}
private fun createOCRRules(): ArrayList<Bundle> {
val testOcrRule = Bundle().apply {
putString("rule_name", "TestOCR")
putBundle("criteria", Bundle().apply {
putParcelableArrayList(
"identifier", arrayListOf(
Bundle().apply {
putString("criteria_key", "min_length")
putString("criteria_value", "3")
},
Bundle().apply {
putString("criteria_key", "max_length")
putString("criteria_value", "7")
},
Bundle().apply {
putString("criteria_key", "starts_with")
putString("criteria_value", "A")
},
Bundle().apply {
putString("criteria_key", "contains")
putString("criteria_value", "BA")
},
Bundle().apply {
putString("criteria_key", "ignore_case")
putString("criteria_value", "true")
})
)
})
putParcelableArrayList("actions", arrayListOf(
Bundle().apply {
putString("action_key", "report")
putString("action_value", "")
}
))
}
return arrayListOf(testOcrRule)
}
fun extractStringDataFromJson(jsonObject: JSONObject): String {
val stringData = jsonObject.get(AppConstants.KEY_STRING_DATA).toString()
Log.d(TAG, "New captured Data: $stringData")
return stringData
}
}

View file

@ -0,0 +1,74 @@
/*
* Copyright (C) 2018-2023 Zebra Technologies Corp
* All rights reserved.
*/
package com.bruvland.carphototaker2000.util;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.ImageFormat;
import android.graphics.Matrix;
import android.graphics.Rect;
import android.graphics.YuvImage;
import java.io.ByteArrayOutputStream;
public class ImageProcessing {
private final String IMG_FORMAT_YUV = "YUV";
private final String IMG_FORMAT_Y8 = "Y8";
private static ImageProcessing instance = null;
public static ImageProcessing getInstance() {
if (instance == null) {
instance = new ImageProcessing();
}
return instance;
}
private ImageProcessing() {
//Private Constructor
}
public Bitmap getBitmap(byte[] data, String imageFormat, int orientation, int stride, int width, int height) {
if (imageFormat.equalsIgnoreCase(IMG_FORMAT_YUV)) {
ByteArrayOutputStream out = new ByteArrayOutputStream();
YuvImage yuvImage = new YuvImage(data, ImageFormat.NV21, width, height, new int[]{stride, stride});
yuvImage.compressToJpeg(new Rect(0, 0, stride, height), 100, out);
yuvImage.getYuvData();
byte[] imageBytes = out.toByteArray();
if (orientation != 0) {
Matrix matrix = new Matrix();
matrix.postRotate(orientation);
Bitmap bitmap = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length);
return Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
} else {
return BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length);
}
} else if (imageFormat.equalsIgnoreCase(IMG_FORMAT_Y8)) {
return convertYtoJPG_CPU(data, orientation, stride, height);
}
return null;
}
private Bitmap convertYtoJPG_CPU(byte[] data, int orientation, int stride, int height) {
int mLength = data.length;
int[] pixels = new int[mLength];
for (int i = 0; i < mLength; i++) {
int p = data[i] & 0xFF;
pixels[i] = 0xff000000 | p << 16 | p << 8 | p;
}
if (orientation != 0) {
Matrix matrix = new Matrix();
matrix.postRotate(orientation);
Bitmap bitmap = Bitmap.createBitmap(pixels, stride, height, Bitmap.Config.ARGB_8888);
return Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
} else {
return Bitmap.createBitmap(pixels, stride, height, Bitmap.Config.ARGB_8888);
}
}
}

View file

@ -0,0 +1,84 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="512dp"
android:height="448dp"
android:viewportWidth="512"
android:viewportHeight="448">
<path
android:fillColor="#FF000000"
android:pathData="M128,160h32v128h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M128,0h32v112h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M208,0h32v112h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M256,0h16v112h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M256,160h16v128h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M400,160h16v128h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M400,0h16v112h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M368,160h16v128h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M288,0h16v112h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M320,0h32v112h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M288,160h16v128h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M320,160h32v128h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M368,0h16v112h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M176,160h16v128h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M176,0h16v112h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M96,0h16v112h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M432,160h32v224h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M432,0h32v112h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M208,160h32v128h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M48,160h32v224h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M48,0h32v112h-32z" />
<path
android:fillColor="#FF000000"
android:pathData="M96,160h16v128h-16z" />
<path
android:fillColor="#FF000000"
android:pathData="M0,128h512v16h-512z" />
<path
android:fillColor="#FF000000"
android:pathData="M112,338.96l0,20.63l30.29,-9.39l0,97.8l25.37,0l0,-128l-2.72,0l-52.94,18.96z" />
<path
android:fillColor="#FF000000"
android:pathData="M257.41,404.29q6.34,-6.5 11.5,-12.53a97.46,97.46 0,0 0,8.8 -11.92,57.54 57.54,0 0,0 5.63,-11.8 37.85,37.85 0,0 0,2 -12.22,39.94 39.94,0 0,0 -2.69,-15 29.43,29.43 0,0 0,-7.89 -11.27,35.78 35.78,0 0,0 -12.88,-7.07A57.53,57.53 0,0 0,244.23 320,48 48,0 0,0 226,323.3a41.7,41.7 0,0 0,-13.83 8.93,38.32 38.32,0 0,0 -8.76,13.18 42.46,42.46 0,0 0,-3 16L225.5,361.41a28.53,28.53 0,0 1,1.22 -8.5,19.71 19.71,0 0,1 3.51,-6.72 16,16 0,0 1,5.72 -4.42,18.29 18.29,0 0,1 7.85,-1.6q7.89,0 12.14,4.81t4.25,13.22a21.65,21.65 0,0 1,-0.82 5.77,29.1 29.1,0 0,1 -2.78,6.46 67.37,67.37 0,0 1,-5.12 7.63q-3.16,4.17 -7.76,9.2l-40.84,43.53L202.87,448h86.54L289.41,427.79L235.13,427.79Z" />
<path
android:fillColor="#FF000000"
android:pathData="M379.12,382.29a34.44,34.44 0,0 0,8.05 -5,33.68 33.68,0 0,0 5.94,-6.41 26.81,26.81 0,0 0,3.68 -7.4,26.29 26.29,0 0,0 1.24,-8A36,36 0,0 0,395 340.15,30.62 30.62,0 0,0 386.31,329a37.71,37.71 0,0 0,-13.3 -6.76A61.07,61.07 0,0 0,355.85 320a50.64,50.64 0,0 0,-15.91 2.44,41 41,0 0,0 -13,6.84 32.39,32.39 0,0 0,-8.72 10.7A30.3,30.3 0,0 0,315 354h24.72a12.79,12.79 0,0 1,1.33 -5.86,13.27 13.27,0 0,1 3.59,-4.41 16.87,16.87 0,0 1,5.31 -2.78,20.7 20.7,0 0,1 6.46,-1 21.19,21.19 0,0 1,7.44 1.19,14.71 14.71,0 0,1 5.27,3.3 13.29,13.29 0,0 1,3.12 5.05,19.34 19.34,0 0,1 1,6.37q0,7.78 -4.53,12.49t-13.95,4.71L341.65,373.06v19.33h13.17a31.63,31.63 0,0 1,8.52 1.07,17.25 17.25,0 0,1 6.46,3.3 14.21,14.21 0,0 1,4.06 5.77,23.1 23.1,0 0,1 1.41,8.52 18.29,18.29 0,0 1,-1.28 7,15.24 15.24,0 0,1 -3.72,5.39 16.46,16.46 0,0 1,-5.95 3.47,24.22 24.22,0 0,1 -7.87,1.19 21.32,21.32 0,0 1,-7.27 -1.19,18.18 18.18,0 0,1 -5.78,-3.3 14.69,14.69 0,0 1,-5.18 -11.42L313.5,412.19a33.11,33.11 0,0 0,3.63 16,33.94 33.94,0 0,0 9.59,11.16 40.57,40.57 0,0 0,13.56 6.59A57.13,57.13 0,0 0,355.85 448a60.23,60.23 0,0 0,17.5 -2.44,41.67 41.67,0 0,0 14,-7.1A33.18,33.18 0,0 0,396.62 427,34.73 34.73,0 0,0 400,411.38a30.65,30.65 0,0 0,-5.18 -17.8Q389.65,386.05 379.12,382.29Z" />
</vector>

View file

@ -0,0 +1,170 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>

View file

@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View file

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Theme.AppTheme.AppBarOverlay"
app:elevation="0dp">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/Theme.AppTheme.PopupOverlay"
app:titleTextColor="?attr/colorOnSurface" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/results_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?actionBarSize"
android:listSelector="@android:color/transparent"
android:scrollbarStyle="outsideOverlay"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/result_row" />
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:id="@+id/scan_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_marginEnd="@dimen/def_half_margin"
android:layout_marginBottom="@dimen/def_margin_max"
android:enabled="false"
app:backgroundTint="?colorTertiaryContainer"
app:icon="@drawable/ic_generic_scan"
app:layout_behavior="com.google.android.material.behavior.HideBottomViewOnScrollBehavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View file

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.google.android.material.card.MaterialCardView
style="@style/Widget.Material3.CardView.Outlined"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="3dp"
app:cardCornerRadius="10dp"
app:cardPreventCornerOverlap="true"
app:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:padding="@dimen/def_margin">
<ImageView
android:id="@+id/captured_image"
android:layout_width="250dp"
android:layout_height="250dp"
android:layout_marginBottom="@dimen/def_half_margin"
android:scaleType="fitCenter"
android:visibility="gone"
tools:src="@drawable/ic_generic_scan"
tools:visibility="visible" />
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/def_quad_margin"
android:textSize="12sp"
android:textStyle="bold"
tools:text="2023-01-17T23:26:28Z" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
</LinearLayout>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

View file

@ -0,0 +1,143 @@
<resources>
<color name="md_theme_primary">#A1D39A</color>
<color name="md_theme_onPrimary">#0A390F</color>
<color name="md_theme_primaryContainer">#245024</color>
<color name="md_theme_onPrimaryContainer">#BCF0B4</color>
<color name="md_theme_secondary">#BACCB3</color>
<color name="md_theme_onSecondary">#253423</color>
<color name="md_theme_secondaryContainer">#3B4B38</color>
<color name="md_theme_onSecondaryContainer">#D5E8CE</color>
<color name="md_theme_tertiary">#A0CFD4</color>
<color name="md_theme_onTertiary">#00363B</color>
<color name="md_theme_tertiaryContainer">#1F4D52</color>
<color name="md_theme_onTertiaryContainer">#BCEBF0</color>
<color name="md_theme_error">#FFB4AB</color>
<color name="md_theme_onError">#690005</color>
<color name="md_theme_errorContainer">#93000A</color>
<color name="md_theme_onErrorContainer">#FFDAD6</color>
<color name="md_theme_background">#10140F</color>
<color name="md_theme_onBackground">#E0E4DB</color>
<color name="md_theme_surface">#10140F</color>
<color name="md_theme_onSurface">#E0E4DB</color>
<color name="md_theme_surfaceVariant">#424940</color>
<color name="md_theme_onSurfaceVariant">#C2C9BD</color>
<color name="md_theme_outline">#8C9388</color>
<color name="md_theme_outlineVariant">#424940</color>
<color name="md_theme_scrim">#000000</color>
<color name="md_theme_inverseSurface">#E0E4DB</color>
<color name="md_theme_inverseOnSurface">#2D322C</color>
<color name="md_theme_inversePrimary">#3B6939</color>
<color name="md_theme_primaryFixed">#BCF0B4</color>
<color name="md_theme_onPrimaryFixed">#002204</color>
<color name="md_theme_primaryFixedDim">#A1D39A</color>
<color name="md_theme_onPrimaryFixedVariant">#245024</color>
<color name="md_theme_secondaryFixed">#D5E8CE</color>
<color name="md_theme_onSecondaryFixed">#111F0F</color>
<color name="md_theme_secondaryFixedDim">#BACCB3</color>
<color name="md_theme_onSecondaryFixedVariant">#3B4B38</color>
<color name="md_theme_tertiaryFixed">#BCEBF0</color>
<color name="md_theme_onTertiaryFixed">#002023</color>
<color name="md_theme_tertiaryFixedDim">#A0CFD4</color>
<color name="md_theme_onTertiaryFixedVariant">#1F4D52</color>
<color name="md_theme_surfaceDim">#10140F</color>
<color name="md_theme_surfaceBright">#363A34</color>
<color name="md_theme_surfaceContainerLowest">#0B0F0A</color>
<color name="md_theme_surfaceContainerLow">#191D17</color>
<color name="md_theme_surfaceContainer">#1D211B</color>
<color name="md_theme_surfaceContainerHigh">#272B25</color>
<color name="md_theme_surfaceContainerHighest">#323630</color>
<color name="md_theme_primary_mediumContrast">#A5D89E</color>
<color name="md_theme_onPrimary_mediumContrast">#001C03</color>
<color name="md_theme_primaryContainer_mediumContrast">#6D9C68</color>
<color name="md_theme_onPrimaryContainer_mediumContrast">#000000</color>
<color name="md_theme_secondary_mediumContrast">#BED0B7</color>
<color name="md_theme_onSecondary_mediumContrast">#0B1A0A</color>
<color name="md_theme_secondaryContainer_mediumContrast">#84967F</color>
<color name="md_theme_onSecondaryContainer_mediumContrast">#000000</color>
<color name="md_theme_tertiary_mediumContrast">#A5D3D8</color>
<color name="md_theme_onTertiary_mediumContrast">#001A1C</color>
<color name="md_theme_tertiaryContainer_mediumContrast">#6B989D</color>
<color name="md_theme_onTertiaryContainer_mediumContrast">#000000</color>
<color name="md_theme_error_mediumContrast">#FFBAB1</color>
<color name="md_theme_onError_mediumContrast">#370001</color>
<color name="md_theme_errorContainer_mediumContrast">#FF5449</color>
<color name="md_theme_onErrorContainer_mediumContrast">#000000</color>
<color name="md_theme_background_mediumContrast">#10140F</color>
<color name="md_theme_onBackground_mediumContrast">#E0E4DB</color>
<color name="md_theme_surface_mediumContrast">#10140F</color>
<color name="md_theme_onSurface_mediumContrast">#F9FCF3</color>
<color name="md_theme_surfaceVariant_mediumContrast">#424940</color>
<color name="md_theme_onSurfaceVariant_mediumContrast">#C6CDC1</color>
<color name="md_theme_outline_mediumContrast">#9EA59A</color>
<color name="md_theme_outlineVariant_mediumContrast">#7E857B</color>
<color name="md_theme_scrim_mediumContrast">#000000</color>
<color name="md_theme_inverseSurface_mediumContrast">#E0E4DB</color>
<color name="md_theme_inverseOnSurface_mediumContrast">#272B25</color>
<color name="md_theme_inversePrimary_mediumContrast">#255125</color>
<color name="md_theme_primaryFixed_mediumContrast">#BCF0B4</color>
<color name="md_theme_onPrimaryFixed_mediumContrast">#001602</color>
<color name="md_theme_primaryFixedDim_mediumContrast">#A1D39A</color>
<color name="md_theme_onPrimaryFixedVariant_mediumContrast">#113F14</color>
<color name="md_theme_secondaryFixed_mediumContrast">#D5E8CE</color>
<color name="md_theme_onSecondaryFixed_mediumContrast">#071406</color>
<color name="md_theme_secondaryFixedDim_mediumContrast">#BACCB3</color>
<color name="md_theme_onSecondaryFixedVariant_mediumContrast">#2B3A28</color>
<color name="md_theme_tertiaryFixed_mediumContrast">#BCEBF0</color>
<color name="md_theme_onTertiaryFixed_mediumContrast">#001416</color>
<color name="md_theme_tertiaryFixedDim_mediumContrast">#A0CFD4</color>
<color name="md_theme_onTertiaryFixedVariant_mediumContrast">#073C41</color>
<color name="md_theme_surfaceDim_mediumContrast">#10140F</color>
<color name="md_theme_surfaceBright_mediumContrast">#363A34</color>
<color name="md_theme_surfaceContainerLowest_mediumContrast">#0B0F0A</color>
<color name="md_theme_surfaceContainerLow_mediumContrast">#191D17</color>
<color name="md_theme_surfaceContainer_mediumContrast">#1D211B</color>
<color name="md_theme_surfaceContainerHigh_mediumContrast">#272B25</color>
<color name="md_theme_surfaceContainerHighest_mediumContrast">#323630</color>
<color name="md_theme_primary_highContrast">#F1FFEA</color>
<color name="md_theme_onPrimary_highContrast">#000000</color>
<color name="md_theme_primaryContainer_highContrast">#A5D89E</color>
<color name="md_theme_onPrimaryContainer_highContrast">#000000</color>
<color name="md_theme_secondary_highContrast">#F1FFEA</color>
<color name="md_theme_onSecondary_highContrast">#000000</color>
<color name="md_theme_secondaryContainer_highContrast">#BED0B7</color>
<color name="md_theme_onSecondaryContainer_highContrast">#000000</color>
<color name="md_theme_tertiary_highContrast">#EFFDFF</color>
<color name="md_theme_onTertiary_highContrast">#000000</color>
<color name="md_theme_tertiaryContainer_highContrast">#A5D3D8</color>
<color name="md_theme_onTertiaryContainer_highContrast">#000000</color>
<color name="md_theme_error_highContrast">#FFF9F9</color>
<color name="md_theme_onError_highContrast">#000000</color>
<color name="md_theme_errorContainer_highContrast">#FFBAB1</color>
<color name="md_theme_onErrorContainer_highContrast">#000000</color>
<color name="md_theme_background_highContrast">#10140F</color>
<color name="md_theme_onBackground_highContrast">#E0E4DB</color>
<color name="md_theme_surface_highContrast">#10140F</color>
<color name="md_theme_onSurface_highContrast">#FFFFFF</color>
<color name="md_theme_surfaceVariant_highContrast">#424940</color>
<color name="md_theme_onSurfaceVariant_highContrast">#F7FDF0</color>
<color name="md_theme_outline_highContrast">#C6CDC1</color>
<color name="md_theme_outlineVariant_highContrast">#C6CDC1</color>
<color name="md_theme_scrim_highContrast">#000000</color>
<color name="md_theme_inverseSurface_highContrast">#E0E4DB</color>
<color name="md_theme_inverseOnSurface_highContrast">#000000</color>
<color name="md_theme_inversePrimary_highContrast">#033209</color>
<color name="md_theme_primaryFixed_highContrast">#C0F4B8</color>
<color name="md_theme_onPrimaryFixed_highContrast">#000000</color>
<color name="md_theme_primaryFixedDim_highContrast">#A5D89E</color>
<color name="md_theme_onPrimaryFixedVariant_highContrast">#001C03</color>
<color name="md_theme_secondaryFixed_highContrast">#DAECD3</color>
<color name="md_theme_onSecondaryFixed_highContrast">#000000</color>
<color name="md_theme_secondaryFixedDim_highContrast">#BED0B7</color>
<color name="md_theme_onSecondaryFixedVariant_highContrast">#0B1A0A</color>
<color name="md_theme_tertiaryFixed_highContrast">#C0EFF5</color>
<color name="md_theme_onTertiaryFixed_highContrast">#000000</color>
<color name="md_theme_tertiaryFixedDim_highContrast">#A5D3D8</color>
<color name="md_theme_onTertiaryFixedVariant_highContrast">#001A1C</color>
<color name="md_theme_surfaceDim_highContrast">#10140F</color>
<color name="md_theme_surfaceBright_highContrast">#363A34</color>
<color name="md_theme_surfaceContainerLowest_highContrast">#0B0F0A</color>
<color name="md_theme_surfaceContainerLow_highContrast">#191D17</color>
<color name="md_theme_surfaceContainer_highContrast">#1D211B</color>
<color name="md_theme_surfaceContainerHigh_highContrast">#272B25</color>
<color name="md_theme_surfaceContainerHighest_highContrast">#323630</color>
</resources>

View file

@ -0,0 +1,98 @@
<resources>
<style name="ThemeOverlay.AppTheme.MediumContrast" parent="Theme.Material3.Dark.NoActionBar">
<item name="colorPrimary">@color/md_theme_primary_mediumContrast</item>
<item name="colorOnPrimary">@color/md_theme_onPrimary_mediumContrast</item>
<item name="colorPrimaryContainer">@color/md_theme_primaryContainer_mediumContrast</item>
<item name="colorOnPrimaryContainer">@color/md_theme_onPrimaryContainer_mediumContrast</item>
<item name="colorSecondary">@color/md_theme_secondary_mediumContrast</item>
<item name="colorOnSecondary">@color/md_theme_onSecondary_mediumContrast</item>
<item name="colorSecondaryContainer">@color/md_theme_secondaryContainer_mediumContrast</item>
<item name="colorOnSecondaryContainer">@color/md_theme_onSecondaryContainer_mediumContrast</item>
<item name="colorTertiary">@color/md_theme_tertiary_mediumContrast</item>
<item name="colorOnTertiary">@color/md_theme_onTertiary_mediumContrast</item>
<item name="colorTertiaryContainer">@color/md_theme_tertiaryContainer_mediumContrast</item>
<item name="colorOnTertiaryContainer">@color/md_theme_onTertiaryContainer_mediumContrast</item>
<item name="colorError">@color/md_theme_error_mediumContrast</item>
<item name="colorOnError">@color/md_theme_onError_mediumContrast</item>
<item name="colorErrorContainer">@color/md_theme_errorContainer_mediumContrast</item>
<item name="colorOnErrorContainer">@color/md_theme_onErrorContainer_mediumContrast</item>
<item name="android:colorBackground">@color/md_theme_background_mediumContrast</item>
<item name="colorOnBackground">@color/md_theme_onBackground_mediumContrast</item>
<item name="colorSurface">@color/md_theme_surface_mediumContrast</item>
<item name="colorOnSurface">@color/md_theme_onSurface_mediumContrast</item>
<item name="colorSurfaceVariant">@color/md_theme_surfaceVariant_mediumContrast</item>
<item name="colorOnSurfaceVariant">@color/md_theme_onSurfaceVariant_mediumContrast</item>
<item name="colorOutline">@color/md_theme_outline_mediumContrast</item>
<item name="colorOutlineVariant">@color/md_theme_outlineVariant_mediumContrast</item>
<item name="colorSurfaceInverse">@color/md_theme_inverseSurface_mediumContrast</item>
<item name="colorOnSurfaceInverse">@color/md_theme_inverseOnSurface_mediumContrast</item>
<item name="colorPrimaryInverse">@color/md_theme_inversePrimary_mediumContrast</item>
<item name="colorPrimaryFixed">@color/md_theme_primaryFixed_mediumContrast</item>
<item name="colorOnPrimaryFixed">@color/md_theme_onPrimaryFixed_mediumContrast</item>
<item name="colorPrimaryFixedDim">@color/md_theme_primaryFixedDim_mediumContrast</item>
<item name="colorOnPrimaryFixedVariant">@color/md_theme_onPrimaryFixedVariant_mediumContrast</item>
<item name="colorSecondaryFixed">@color/md_theme_secondaryFixed_mediumContrast</item>
<item name="colorOnSecondaryFixed">@color/md_theme_onSecondaryFixed_mediumContrast</item>
<item name="colorSecondaryFixedDim">@color/md_theme_secondaryFixedDim_mediumContrast</item>
<item name="colorOnSecondaryFixedVariant">@color/md_theme_onSecondaryFixedVariant_mediumContrast</item>
<item name="colorTertiaryFixed">@color/md_theme_tertiaryFixed_mediumContrast</item>
<item name="colorOnTertiaryFixed">@color/md_theme_onTertiaryFixed_mediumContrast</item>
<item name="colorTertiaryFixedDim">@color/md_theme_tertiaryFixedDim_mediumContrast</item>
<item name="colorOnTertiaryFixedVariant">@color/md_theme_onTertiaryFixedVariant_mediumContrast</item>
<item name="colorSurfaceDim">@color/md_theme_surfaceDim_mediumContrast</item>
<item name="colorSurfaceBright">@color/md_theme_surfaceBright_mediumContrast</item>
<item name="colorSurfaceContainerLowest">@color/md_theme_surfaceContainerLowest_mediumContrast</item>
<item name="colorSurfaceContainerLow">@color/md_theme_surfaceContainerLow_mediumContrast</item>
<item name="colorSurfaceContainer">@color/md_theme_surfaceContainer_mediumContrast</item>
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh_mediumContrast</item>
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest_mediumContrast</item>
</style>
<style name="ThemeOverlay.AppTheme.HighContrast" parent="Theme.Material3.Dark.NoActionBar">
<item name="colorPrimary">@color/md_theme_primary_highContrast</item>
<item name="colorOnPrimary">@color/md_theme_onPrimary_highContrast</item>
<item name="colorPrimaryContainer">@color/md_theme_primaryContainer_highContrast</item>
<item name="colorOnPrimaryContainer">@color/md_theme_onPrimaryContainer_highContrast</item>
<item name="colorSecondary">@color/md_theme_secondary_highContrast</item>
<item name="colorOnSecondary">@color/md_theme_onSecondary_highContrast</item>
<item name="colorSecondaryContainer">@color/md_theme_secondaryContainer_highContrast</item>
<item name="colorOnSecondaryContainer">@color/md_theme_onSecondaryContainer_highContrast</item>
<item name="colorTertiary">@color/md_theme_tertiary_highContrast</item>
<item name="colorOnTertiary">@color/md_theme_onTertiary_highContrast</item>
<item name="colorTertiaryContainer">@color/md_theme_tertiaryContainer_highContrast</item>
<item name="colorOnTertiaryContainer">@color/md_theme_onTertiaryContainer_highContrast</item>
<item name="colorError">@color/md_theme_error_highContrast</item>
<item name="colorOnError">@color/md_theme_onError_highContrast</item>
<item name="colorErrorContainer">@color/md_theme_errorContainer_highContrast</item>
<item name="colorOnErrorContainer">@color/md_theme_onErrorContainer_highContrast</item>
<item name="android:colorBackground">@color/md_theme_background_highContrast</item>
<item name="colorOnBackground">@color/md_theme_onBackground_highContrast</item>
<item name="colorSurface">@color/md_theme_surface_highContrast</item>
<item name="colorOnSurface">@color/md_theme_onSurface_highContrast</item>
<item name="colorSurfaceVariant">@color/md_theme_surfaceVariant_highContrast</item>
<item name="colorOnSurfaceVariant">@color/md_theme_onSurfaceVariant_highContrast</item>
<item name="colorOutline">@color/md_theme_outline_highContrast</item>
<item name="colorOutlineVariant">@color/md_theme_outlineVariant_highContrast</item>
<item name="colorSurfaceInverse">@color/md_theme_inverseSurface_highContrast</item>
<item name="colorOnSurfaceInverse">@color/md_theme_inverseOnSurface_highContrast</item>
<item name="colorPrimaryInverse">@color/md_theme_inversePrimary_highContrast</item>
<item name="colorPrimaryFixed">@color/md_theme_primaryFixed_highContrast</item>
<item name="colorOnPrimaryFixed">@color/md_theme_onPrimaryFixed_highContrast</item>
<item name="colorPrimaryFixedDim">@color/md_theme_primaryFixedDim_highContrast</item>
<item name="colorOnPrimaryFixedVariant">@color/md_theme_onPrimaryFixedVariant_highContrast</item>
<item name="colorSecondaryFixed">@color/md_theme_secondaryFixed_highContrast</item>
<item name="colorOnSecondaryFixed">@color/md_theme_onSecondaryFixed_highContrast</item>
<item name="colorSecondaryFixedDim">@color/md_theme_secondaryFixedDim_highContrast</item>
<item name="colorOnSecondaryFixedVariant">@color/md_theme_onSecondaryFixedVariant_highContrast</item>
<item name="colorTertiaryFixed">@color/md_theme_tertiaryFixed_highContrast</item>
<item name="colorOnTertiaryFixed">@color/md_theme_onTertiaryFixed_highContrast</item>
<item name="colorTertiaryFixedDim">@color/md_theme_tertiaryFixedDim_highContrast</item>
<item name="colorOnTertiaryFixedVariant">@color/md_theme_onTertiaryFixedVariant_highContrast</item>
<item name="colorSurfaceDim">@color/md_theme_surfaceDim_highContrast</item>
<item name="colorSurfaceBright">@color/md_theme_surfaceBright_highContrast</item>
<item name="colorSurfaceContainerLowest">@color/md_theme_surfaceContainerLowest_highContrast</item>
<item name="colorSurfaceContainerLow">@color/md_theme_surfaceContainerLow_highContrast</item>
<item name="colorSurfaceContainer">@color/md_theme_surfaceContainer_highContrast</item>
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh_highContrast</item>
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest_highContrast</item>
</style>
</resources>

View file

@ -0,0 +1,60 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="AppTheme" parent="Theme.Material3.Dark">
<item name="colorPrimary">@color/md_theme_primary</item>
<item name="colorOnPrimary">@color/md_theme_onPrimary</item>
<item name="colorPrimaryContainer">@color/md_theme_primaryContainer</item>
<item name="colorOnPrimaryContainer">@color/md_theme_onPrimaryContainer</item>
<item name="colorSecondary">@color/md_theme_secondary</item>
<item name="colorOnSecondary">@color/md_theme_onSecondary</item>
<item name="colorSecondaryContainer">@color/md_theme_secondaryContainer</item>
<item name="colorOnSecondaryContainer">@color/md_theme_onSecondaryContainer</item>
<item name="colorTertiary">@color/md_theme_tertiary</item>
<item name="colorOnTertiary">@color/md_theme_onTertiary</item>
<item name="colorTertiaryContainer">@color/md_theme_tertiaryContainer</item>
<item name="colorOnTertiaryContainer">@color/md_theme_onTertiaryContainer</item>
<item name="colorError">@color/md_theme_error</item>
<item name="colorOnError">@color/md_theme_onError</item>
<item name="colorErrorContainer">@color/md_theme_errorContainer</item>
<item name="colorOnErrorContainer">@color/md_theme_onErrorContainer</item>
<item name="android:colorBackground">@color/md_theme_background</item>
<item name="colorOnBackground">@color/md_theme_onBackground</item>
<item name="colorSurface">@color/md_theme_surface</item>
<item name="colorOnSurface">@color/md_theme_onSurface</item>
<item name="colorSurfaceVariant">@color/md_theme_surfaceVariant</item>
<item name="colorOnSurfaceVariant">@color/md_theme_onSurfaceVariant</item>
<item name="colorOutline">@color/md_theme_outline</item>
<item name="colorOutlineVariant">@color/md_theme_outlineVariant</item>
<item name="colorSurfaceInverse">@color/md_theme_inverseSurface</item>
<item name="colorOnSurfaceInverse">@color/md_theme_inverseOnSurface</item>
<item name="colorPrimaryInverse">@color/md_theme_inversePrimary</item>
<item name="colorPrimaryFixed">@color/md_theme_primaryFixed</item>
<item name="colorOnPrimaryFixed">@color/md_theme_onPrimaryFixed</item>
<item name="colorPrimaryFixedDim">@color/md_theme_primaryFixedDim</item>
<item name="colorOnPrimaryFixedVariant">@color/md_theme_onPrimaryFixedVariant</item>
<item name="colorSecondaryFixed">@color/md_theme_secondaryFixed</item>
<item name="colorOnSecondaryFixed">@color/md_theme_onSecondaryFixed</item>
<item name="colorSecondaryFixedDim">@color/md_theme_secondaryFixedDim</item>
<item name="colorOnSecondaryFixedVariant">@color/md_theme_onSecondaryFixedVariant</item>
<item name="colorTertiaryFixed">@color/md_theme_tertiaryFixed</item>
<item name="colorOnTertiaryFixed">@color/md_theme_onTertiaryFixed</item>
<item name="colorTertiaryFixedDim">@color/md_theme_tertiaryFixedDim</item>
<item name="colorOnTertiaryFixedVariant">@color/md_theme_onTertiaryFixedVariant</item>
<item name="colorSurfaceDim">@color/md_theme_surfaceDim</item>
<item name="colorSurfaceBright">@color/md_theme_surfaceBright</item>
<item name="colorSurfaceContainerLowest">@color/md_theme_surfaceContainerLowest</item>
<item name="colorSurfaceContainerLow">@color/md_theme_surfaceContainerLow</item>
<item name="colorSurfaceContainer">@color/md_theme_surfaceContainer</item>
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh</item>
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest</item>
<!-- Status bar color. -->
<item name="android:statusBarColor">?attr/colorSurface</item>
<item name="android:navigationBarColor">?attr/colorSurface</item>
<item name="android:windowLightStatusBar">false</item>
<item name="android:windowLightNavigationBar">false</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
</resources>

View file

@ -0,0 +1,144 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="md_theme_primary">#3B6939</color>
<color name="md_theme_onPrimary">#FFFFFF</color>
<color name="md_theme_primaryContainer">#BCF0B4</color>
<color name="md_theme_onPrimaryContainer">#002204</color>
<color name="md_theme_secondary">#52634F</color>
<color name="md_theme_onSecondary">#FFFFFF</color>
<color name="md_theme_secondaryContainer">#D5E8CE</color>
<color name="md_theme_onSecondaryContainer">#111F0F</color>
<color name="md_theme_tertiary">#38656A</color>
<color name="md_theme_onTertiary">#FFFFFF</color>
<color name="md_theme_tertiaryContainer">#BCEBF0</color>
<color name="md_theme_onTertiaryContainer">#002023</color>
<color name="md_theme_error">#BA1A1A</color>
<color name="md_theme_onError">#FFFFFF</color>
<color name="md_theme_errorContainer">#FFDAD6</color>
<color name="md_theme_onErrorContainer">#410002</color>
<color name="md_theme_background">#F7FBF1</color>
<color name="md_theme_onBackground">#191D17</color>
<color name="md_theme_surface">#F7FBF1</color>
<color name="md_theme_onSurface">#191D17</color>
<color name="md_theme_surfaceVariant">#DEE5D8</color>
<color name="md_theme_onSurfaceVariant">#424940</color>
<color name="md_theme_outline">#72796F</color>
<color name="md_theme_outlineVariant">#C2C9BD</color>
<color name="md_theme_scrim">#000000</color>
<color name="md_theme_inverseSurface">#2D322C</color>
<color name="md_theme_inverseOnSurface">#EFF2E9</color>
<color name="md_theme_inversePrimary">#A1D39A</color>
<color name="md_theme_primaryFixed">#BCF0B4</color>
<color name="md_theme_onPrimaryFixed">#002204</color>
<color name="md_theme_primaryFixedDim">#A1D39A</color>
<color name="md_theme_onPrimaryFixedVariant">#245024</color>
<color name="md_theme_secondaryFixed">#D5E8CE</color>
<color name="md_theme_onSecondaryFixed">#111F0F</color>
<color name="md_theme_secondaryFixedDim">#BACCB3</color>
<color name="md_theme_onSecondaryFixedVariant">#3B4B38</color>
<color name="md_theme_tertiaryFixed">#BCEBF0</color>
<color name="md_theme_onTertiaryFixed">#002023</color>
<color name="md_theme_tertiaryFixedDim">#A0CFD4</color>
<color name="md_theme_onTertiaryFixedVariant">#1F4D52</color>
<color name="md_theme_surfaceDim">#D8DBD2</color>
<color name="md_theme_surfaceBright">#F7FBF1</color>
<color name="md_theme_surfaceContainerLowest">#FFFFFF</color>
<color name="md_theme_surfaceContainerLow">#F1F5EB</color>
<color name="md_theme_surfaceContainer">#ECEFE6</color>
<color name="md_theme_surfaceContainerHigh">#E6E9E0</color>
<color name="md_theme_surfaceContainerHighest">#E0E4DB</color>
<color name="md_theme_primary_mediumContrast">#204C20</color>
<color name="md_theme_onPrimary_mediumContrast">#FFFFFF</color>
<color name="md_theme_primaryContainer_mediumContrast">#517F4E</color>
<color name="md_theme_onPrimaryContainer_mediumContrast">#FFFFFF</color>
<color name="md_theme_secondary_mediumContrast">#374734</color>
<color name="md_theme_onSecondary_mediumContrast">#FFFFFF</color>
<color name="md_theme_secondaryContainer_mediumContrast">#687964</color>
<color name="md_theme_onSecondaryContainer_mediumContrast">#FFFFFF</color>
<color name="md_theme_tertiary_mediumContrast">#1A494E</color>
<color name="md_theme_onTertiary_mediumContrast">#FFFFFF</color>
<color name="md_theme_tertiaryContainer_mediumContrast">#4F7C81</color>
<color name="md_theme_onTertiaryContainer_mediumContrast">#FFFFFF</color>
<color name="md_theme_error_mediumContrast">#8C0009</color>
<color name="md_theme_onError_mediumContrast">#FFFFFF</color>
<color name="md_theme_errorContainer_mediumContrast">#DA342E</color>
<color name="md_theme_onErrorContainer_mediumContrast">#FFFFFF</color>
<color name="md_theme_background_mediumContrast">#F7FBF1</color>
<color name="md_theme_onBackground_mediumContrast">#191D17</color>
<color name="md_theme_surface_mediumContrast">#F7FBF1</color>
<color name="md_theme_onSurface_mediumContrast">#191D17</color>
<color name="md_theme_surfaceVariant_mediumContrast">#DEE5D8</color>
<color name="md_theme_onSurfaceVariant_mediumContrast">#3E453C</color>
<color name="md_theme_outline_mediumContrast">#5A6157</color>
<color name="md_theme_outlineVariant_mediumContrast">#767D72</color>
<color name="md_theme_scrim_mediumContrast">#000000</color>
<color name="md_theme_inverseSurface_mediumContrast">#2D322C</color>
<color name="md_theme_inverseOnSurface_mediumContrast">#EFF2E9</color>
<color name="md_theme_inversePrimary_mediumContrast">#A1D39A</color>
<color name="md_theme_primaryFixed_mediumContrast">#517F4E</color>
<color name="md_theme_onPrimaryFixed_mediumContrast">#FFFFFF</color>
<color name="md_theme_primaryFixedDim_mediumContrast">#396637</color>
<color name="md_theme_onPrimaryFixedVariant_mediumContrast">#FFFFFF</color>
<color name="md_theme_secondaryFixed_mediumContrast">#687964</color>
<color name="md_theme_onSecondaryFixed_mediumContrast">#FFFFFF</color>
<color name="md_theme_secondaryFixedDim_mediumContrast">#50604C</color>
<color name="md_theme_onSecondaryFixedVariant_mediumContrast">#FFFFFF</color>
<color name="md_theme_tertiaryFixed_mediumContrast">#4F7C81</color>
<color name="md_theme_onTertiaryFixed_mediumContrast">#FFFFFF</color>
<color name="md_theme_tertiaryFixedDim_mediumContrast">#366368</color>
<color name="md_theme_onTertiaryFixedVariant_mediumContrast">#FFFFFF</color>
<color name="md_theme_surfaceDim_mediumContrast">#D8DBD2</color>
<color name="md_theme_surfaceBright_mediumContrast">#F7FBF1</color>
<color name="md_theme_surfaceContainerLowest_mediumContrast">#FFFFFF</color>
<color name="md_theme_surfaceContainerLow_mediumContrast">#F1F5EB</color>
<color name="md_theme_surfaceContainer_mediumContrast">#ECEFE6</color>
<color name="md_theme_surfaceContainerHigh_mediumContrast">#E6E9E0</color>
<color name="md_theme_surfaceContainerHighest_mediumContrast">#E0E4DB</color>
<color name="md_theme_primary_highContrast">#002905</color>
<color name="md_theme_onPrimary_highContrast">#FFFFFF</color>
<color name="md_theme_primaryContainer_highContrast">#204C20</color>
<color name="md_theme_onPrimaryContainer_highContrast">#FFFFFF</color>
<color name="md_theme_secondary_highContrast">#172616</color>
<color name="md_theme_onSecondary_highContrast">#FFFFFF</color>
<color name="md_theme_secondaryContainer_highContrast">#374734</color>
<color name="md_theme_onSecondaryContainer_highContrast">#FFFFFF</color>
<color name="md_theme_tertiary_highContrast">#00272A</color>
<color name="md_theme_onTertiary_highContrast">#FFFFFF</color>
<color name="md_theme_tertiaryContainer_highContrast">#1A494E</color>
<color name="md_theme_onTertiaryContainer_highContrast">#FFFFFF</color>
<color name="md_theme_error_highContrast">#4E0002</color>
<color name="md_theme_onError_highContrast">#FFFFFF</color>
<color name="md_theme_errorContainer_highContrast">#8C0009</color>
<color name="md_theme_onErrorContainer_highContrast">#FFFFFF</color>
<color name="md_theme_background_highContrast">#F7FBF1</color>
<color name="md_theme_onBackground_highContrast">#191D17</color>
<color name="md_theme_surface_highContrast">#F7FBF1</color>
<color name="md_theme_onSurface_highContrast">#000000</color>
<color name="md_theme_surfaceVariant_highContrast">#DEE5D8</color>
<color name="md_theme_onSurfaceVariant_highContrast">#1F261E</color>
<color name="md_theme_outline_highContrast">#3E453C</color>
<color name="md_theme_outlineVariant_highContrast">#3E453C</color>
<color name="md_theme_scrim_highContrast">#000000</color>
<color name="md_theme_inverseSurface_highContrast">#2D322C</color>
<color name="md_theme_inverseOnSurface_highContrast">#FFFFFF</color>
<color name="md_theme_inversePrimary_highContrast">#C6FABD</color>
<color name="md_theme_primaryFixed_highContrast">#204C20</color>
<color name="md_theme_onPrimaryFixed_highContrast">#FFFFFF</color>
<color name="md_theme_primaryFixedDim_highContrast">#05350C</color>
<color name="md_theme_onPrimaryFixedVariant_highContrast">#FFFFFF</color>
<color name="md_theme_secondaryFixed_highContrast">#374734</color>
<color name="md_theme_onSecondaryFixed_highContrast">#FFFFFF</color>
<color name="md_theme_secondaryFixedDim_highContrast">#223020</color>
<color name="md_theme_onSecondaryFixedVariant_highContrast">#FFFFFF</color>
<color name="md_theme_tertiaryFixed_highContrast">#1A494E</color>
<color name="md_theme_onTertiaryFixed_highContrast">#FFFFFF</color>
<color name="md_theme_tertiaryFixedDim_highContrast">#003237</color>
<color name="md_theme_onTertiaryFixedVariant_highContrast">#FFFFFF</color>
<color name="md_theme_surfaceDim_highContrast">#D8DBD2</color>
<color name="md_theme_surfaceBright_highContrast">#F7FBF1</color>
<color name="md_theme_surfaceContainerLowest_highContrast">#FFFFFF</color>
<color name="md_theme_surfaceContainerLow_highContrast">#F1F5EB</color>
<color name="md_theme_surfaceContainer_highContrast">#ECEFE6</color>
<color name="md_theme_surfaceContainerHigh_highContrast">#E6E9E0</color>
<color name="md_theme_surfaceContainerHighest_highContrast">#E0E4DB</color>
</resources>

View file

@ -0,0 +1,11 @@
<resources>
<dimen name="fab_margin">16dp</dimen>
<dimen name="def_margin_max">30dp</dimen>
<dimen name="def_margin_max_half">15dp</dimen>
<dimen name="def_margin">18dp</dimen>
<dimen name="def_half_margin">20dp</dimen>
<dimen name="def_half_half_margin">10dp</dimen>
<dimen name="def_quad_margin">4dp</dimen>
<dimen name="def_quad_margin_max">6dp</dimen>
</resources>

View file

@ -0,0 +1,3 @@
<resources>
<string name="app_name">Car Photo taker 2000</string>
</resources>

View file

@ -0,0 +1,98 @@
<resources>
<style name="ThemeOverlay.AppTheme.MediumContrast" parent="Theme.Material3.Light.NoActionBar">
<item name="colorPrimary">@color/md_theme_primary_mediumContrast</item>
<item name="colorOnPrimary">@color/md_theme_onPrimary_mediumContrast</item>
<item name="colorPrimaryContainer">@color/md_theme_primaryContainer_mediumContrast</item>
<item name="colorOnPrimaryContainer">@color/md_theme_onPrimaryContainer_mediumContrast</item>
<item name="colorSecondary">@color/md_theme_secondary_mediumContrast</item>
<item name="colorOnSecondary">@color/md_theme_onSecondary_mediumContrast</item>
<item name="colorSecondaryContainer">@color/md_theme_secondaryContainer_mediumContrast</item>
<item name="colorOnSecondaryContainer">@color/md_theme_onSecondaryContainer_mediumContrast</item>
<item name="colorTertiary">@color/md_theme_tertiary_mediumContrast</item>
<item name="colorOnTertiary">@color/md_theme_onTertiary_mediumContrast</item>
<item name="colorTertiaryContainer">@color/md_theme_tertiaryContainer_mediumContrast</item>
<item name="colorOnTertiaryContainer">@color/md_theme_onTertiaryContainer_mediumContrast</item>
<item name="colorError">@color/md_theme_error_mediumContrast</item>
<item name="colorOnError">@color/md_theme_onError_mediumContrast</item>
<item name="colorErrorContainer">@color/md_theme_errorContainer_mediumContrast</item>
<item name="colorOnErrorContainer">@color/md_theme_onErrorContainer_mediumContrast</item>
<item name="android:colorBackground">@color/md_theme_background_mediumContrast</item>
<item name="colorOnBackground">@color/md_theme_onBackground_mediumContrast</item>
<item name="colorSurface">@color/md_theme_surface_mediumContrast</item>
<item name="colorOnSurface">@color/md_theme_onSurface_mediumContrast</item>
<item name="colorSurfaceVariant">@color/md_theme_surfaceVariant_mediumContrast</item>
<item name="colorOnSurfaceVariant">@color/md_theme_onSurfaceVariant_mediumContrast</item>
<item name="colorOutline">@color/md_theme_outline_mediumContrast</item>
<item name="colorOutlineVariant">@color/md_theme_outlineVariant_mediumContrast</item>
<item name="colorSurfaceInverse">@color/md_theme_inverseSurface_mediumContrast</item>
<item name="colorOnSurfaceInverse">@color/md_theme_inverseOnSurface_mediumContrast</item>
<item name="colorPrimaryInverse">@color/md_theme_inversePrimary_mediumContrast</item>
<item name="colorPrimaryFixed">@color/md_theme_primaryFixed_mediumContrast</item>
<item name="colorOnPrimaryFixed">@color/md_theme_onPrimaryFixed_mediumContrast</item>
<item name="colorPrimaryFixedDim">@color/md_theme_primaryFixedDim_mediumContrast</item>
<item name="colorOnPrimaryFixedVariant">@color/md_theme_onPrimaryFixedVariant_mediumContrast</item>
<item name="colorSecondaryFixed">@color/md_theme_secondaryFixed_mediumContrast</item>
<item name="colorOnSecondaryFixed">@color/md_theme_onSecondaryFixed_mediumContrast</item>
<item name="colorSecondaryFixedDim">@color/md_theme_secondaryFixedDim_mediumContrast</item>
<item name="colorOnSecondaryFixedVariant">@color/md_theme_onSecondaryFixedVariant_mediumContrast</item>
<item name="colorTertiaryFixed">@color/md_theme_tertiaryFixed_mediumContrast</item>
<item name="colorOnTertiaryFixed">@color/md_theme_onTertiaryFixed_mediumContrast</item>
<item name="colorTertiaryFixedDim">@color/md_theme_tertiaryFixedDim_mediumContrast</item>
<item name="colorOnTertiaryFixedVariant">@color/md_theme_onTertiaryFixedVariant_mediumContrast</item>
<item name="colorSurfaceDim">@color/md_theme_surfaceDim_mediumContrast</item>
<item name="colorSurfaceBright">@color/md_theme_surfaceBright_mediumContrast</item>
<item name="colorSurfaceContainerLowest">@color/md_theme_surfaceContainerLowest_mediumContrast</item>
<item name="colorSurfaceContainerLow">@color/md_theme_surfaceContainerLow_mediumContrast</item>
<item name="colorSurfaceContainer">@color/md_theme_surfaceContainer_mediumContrast</item>
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh_mediumContrast</item>
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest_mediumContrast</item>
</style>
<style name="ThemeOverlay.AppTheme.HighContrast" parent="Theme.Material3.Light.NoActionBar">
<item name="colorPrimary">@color/md_theme_primary_highContrast</item>
<item name="colorOnPrimary">@color/md_theme_onPrimary_highContrast</item>
<item name="colorPrimaryContainer">@color/md_theme_primaryContainer_highContrast</item>
<item name="colorOnPrimaryContainer">@color/md_theme_onPrimaryContainer_highContrast</item>
<item name="colorSecondary">@color/md_theme_secondary_highContrast</item>
<item name="colorOnSecondary">@color/md_theme_onSecondary_highContrast</item>
<item name="colorSecondaryContainer">@color/md_theme_secondaryContainer_highContrast</item>
<item name="colorOnSecondaryContainer">@color/md_theme_onSecondaryContainer_highContrast</item>
<item name="colorTertiary">@color/md_theme_tertiary_highContrast</item>
<item name="colorOnTertiary">@color/md_theme_onTertiary_highContrast</item>
<item name="colorTertiaryContainer">@color/md_theme_tertiaryContainer_highContrast</item>
<item name="colorOnTertiaryContainer">@color/md_theme_onTertiaryContainer_highContrast</item>
<item name="colorError">@color/md_theme_error_highContrast</item>
<item name="colorOnError">@color/md_theme_onError_highContrast</item>
<item name="colorErrorContainer">@color/md_theme_errorContainer_highContrast</item>
<item name="colorOnErrorContainer">@color/md_theme_onErrorContainer_highContrast</item>
<item name="android:colorBackground">@color/md_theme_background_highContrast</item>
<item name="colorOnBackground">@color/md_theme_onBackground_highContrast</item>
<item name="colorSurface">@color/md_theme_surface_highContrast</item>
<item name="colorOnSurface">@color/md_theme_onSurface_highContrast</item>
<item name="colorSurfaceVariant">@color/md_theme_surfaceVariant_highContrast</item>
<item name="colorOnSurfaceVariant">@color/md_theme_onSurfaceVariant_highContrast</item>
<item name="colorOutline">@color/md_theme_outline_highContrast</item>
<item name="colorOutlineVariant">@color/md_theme_outlineVariant_highContrast</item>
<item name="colorSurfaceInverse">@color/md_theme_inverseSurface_highContrast</item>
<item name="colorOnSurfaceInverse">@color/md_theme_inverseOnSurface_highContrast</item>
<item name="colorPrimaryInverse">@color/md_theme_inversePrimary_highContrast</item>
<item name="colorPrimaryFixed">@color/md_theme_primaryFixed_highContrast</item>
<item name="colorOnPrimaryFixed">@color/md_theme_onPrimaryFixed_highContrast</item>
<item name="colorPrimaryFixedDim">@color/md_theme_primaryFixedDim_highContrast</item>
<item name="colorOnPrimaryFixedVariant">@color/md_theme_onPrimaryFixedVariant_highContrast</item>
<item name="colorSecondaryFixed">@color/md_theme_secondaryFixed_highContrast</item>
<item name="colorOnSecondaryFixed">@color/md_theme_onSecondaryFixed_highContrast</item>
<item name="colorSecondaryFixedDim">@color/md_theme_secondaryFixedDim_highContrast</item>
<item name="colorOnSecondaryFixedVariant">@color/md_theme_onSecondaryFixedVariant_highContrast</item>
<item name="colorTertiaryFixed">@color/md_theme_tertiaryFixed_highContrast</item>
<item name="colorOnTertiaryFixed">@color/md_theme_onTertiaryFixed_highContrast</item>
<item name="colorTertiaryFixedDim">@color/md_theme_tertiaryFixedDim_highContrast</item>
<item name="colorOnTertiaryFixedVariant">@color/md_theme_onTertiaryFixedVariant_highContrast</item>
<item name="colorSurfaceDim">@color/md_theme_surfaceDim_highContrast</item>
<item name="colorSurfaceBright">@color/md_theme_surfaceBright_highContrast</item>
<item name="colorSurfaceContainerLowest">@color/md_theme_surfaceContainerLowest_highContrast</item>
<item name="colorSurfaceContainerLow">@color/md_theme_surfaceContainerLow_highContrast</item>
<item name="colorSurfaceContainer">@color/md_theme_surfaceContainer_highContrast</item>
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh_highContrast</item>
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest_highContrast</item>
</style>
</resources>

View file

@ -0,0 +1,64 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="AppTheme" parent="Theme.Material3.Light.NoActionBar">
<item name="colorPrimary">@color/md_theme_primary</item>
<item name="colorOnPrimary">@color/md_theme_onPrimary</item>
<item name="colorPrimaryContainer">@color/md_theme_primaryContainer</item>
<item name="colorOnPrimaryContainer">@color/md_theme_onPrimaryContainer</item>
<item name="colorSecondary">@color/md_theme_secondary</item>
<item name="colorOnSecondary">@color/md_theme_onSecondary</item>
<item name="colorSecondaryContainer">@color/md_theme_secondaryContainer</item>
<item name="colorOnSecondaryContainer">@color/md_theme_onSecondaryContainer</item>
<item name="colorTertiary">@color/md_theme_tertiary</item>
<item name="colorOnTertiary">@color/md_theme_onTertiary</item>
<item name="colorTertiaryContainer">@color/md_theme_tertiaryContainer</item>
<item name="colorOnTertiaryContainer">@color/md_theme_onTertiaryContainer</item>
<item name="colorError">@color/md_theme_error</item>
<item name="colorOnError">@color/md_theme_onError</item>
<item name="colorErrorContainer">@color/md_theme_errorContainer</item>
<item name="colorOnErrorContainer">@color/md_theme_onErrorContainer</item>
<item name="android:colorBackground">@color/md_theme_background</item>
<item name="colorOnBackground">@color/md_theme_onBackground</item>
<item name="colorSurface">@color/md_theme_surface</item>
<item name="colorOnSurface">@color/md_theme_onSurface</item>
<item name="colorSurfaceVariant">@color/md_theme_surfaceVariant</item>
<item name="colorOnSurfaceVariant">@color/md_theme_onSurfaceVariant</item>
<item name="colorOutline">@color/md_theme_outline</item>
<item name="colorOutlineVariant">@color/md_theme_outlineVariant</item>
<item name="colorSurfaceInverse">@color/md_theme_inverseSurface</item>
<item name="colorOnSurfaceInverse">@color/md_theme_inverseOnSurface</item>
<item name="colorPrimaryInverse">@color/md_theme_inversePrimary</item>
<item name="colorPrimaryFixed">@color/md_theme_primaryFixed</item>
<item name="colorOnPrimaryFixed">@color/md_theme_onPrimaryFixed</item>
<item name="colorPrimaryFixedDim">@color/md_theme_primaryFixedDim</item>
<item name="colorOnPrimaryFixedVariant">@color/md_theme_onPrimaryFixedVariant</item>
<item name="colorSecondaryFixed">@color/md_theme_secondaryFixed</item>
<item name="colorOnSecondaryFixed">@color/md_theme_onSecondaryFixed</item>
<item name="colorSecondaryFixedDim">@color/md_theme_secondaryFixedDim</item>
<item name="colorOnSecondaryFixedVariant">@color/md_theme_onSecondaryFixedVariant</item>
<item name="colorTertiaryFixed">@color/md_theme_tertiaryFixed</item>
<item name="colorOnTertiaryFixed">@color/md_theme_onTertiaryFixed</item>
<item name="colorTertiaryFixedDim">@color/md_theme_tertiaryFixedDim</item>
<item name="colorOnTertiaryFixedVariant">@color/md_theme_onTertiaryFixedVariant</item>
<item name="colorSurfaceDim">@color/md_theme_surfaceDim</item>
<item name="colorSurfaceBright">@color/md_theme_surfaceBright</item>
<item name="colorSurfaceContainerLowest">@color/md_theme_surfaceContainerLowest</item>
<item name="colorSurfaceContainerLow">@color/md_theme_surfaceContainerLow</item>
<item name="colorSurfaceContainer">@color/md_theme_surfaceContainer</item>
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh</item>
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest</item>
<!-- Status bar color. -->
<item name="android:statusBarColor">?attr/colorSurface</item>
<item name="android:navigationBarColor">?attr/colorSurface</item>
<item name="android:windowLightStatusBar">true</item>
<item name="android:windowLightNavigationBar">true</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="Theme.AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="Theme.AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample backup rules file; uncomment and customize as necessary.
See https://developer.android.com/guide/topics/data/autobackup
for details.
Note: This file is ignored for devices older that API 31
See https://developer.android.com/about/versions/12/backup-restore
-->
<full-backup-content>
<!--
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample data extraction rules file; uncomment and customize as necessary.
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
for details.
-->
<data-extraction-rules>
<cloud-backup>
<!-- TODO: Use <include> and <exclude> to control what is backed up.
<include .../>
<exclude .../>
-->
</cloud-backup>
<!--
<device-transfer>
<include .../>
<exclude .../>
</device-transfer>
-->
</data-extraction-rules>

View file

@ -0,0 +1,17 @@
package com.bruvland.carphototaker2000
import org.junit.Test
import org.junit.Assert.*
/**
* Example local unit test, which will execute on the development machine (host).
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
class ExampleUnitTest {
@Test
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
}

5
build.gradle.kts Normal file
View file

@ -0,0 +1,5 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.androidApplication) apply false
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
}

23
gradle.properties Normal file
View file

@ -0,0 +1,23 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. For more details, visit
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

28
gradle/libs.versions.toml Normal file
View file

@ -0,0 +1,28 @@
[versions]
agp = "8.3.0"
kotlin = "1.9.0"
coreKtx = "1.13.1"
junit = "4.13.2"
junitVersion = "1.2.1"
espressoCore = "3.6.1"
appcompat = "1.7.0"
material = "1.12.0"
lifecycleLivedataKtx = "2.6.1"
lifecycleViewmodelKtx = "2.6.1"
navigationUiKtx = "2.6.0"
[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
androidx-lifecycle-livedata-ktx = { group = "androidx.lifecycle", name = "lifecycle-livedata-ktx", version.ref = "lifecycleLivedataKtx" }
androidx-lifecycle-viewmodel-ktx = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", version.ref = "lifecycleViewmodelKtx" }
androidx-navigation-ui-ktx = { group = "androidx.navigation", name = "navigation-ui-ktx", version.ref = "navigationUiKtx" }
[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }

BIN
gradle/wrapper/gradle-wrapper.jar vendored Normal file

Binary file not shown.

View file

@ -0,0 +1,6 @@
#Tue Jul 30 10:41:10 CEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

185
gradlew vendored Normal file
View file

@ -0,0 +1,185 @@
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=`expr $i + 1`
done
case $i in
0) set -- ;;
1) set -- "$args0" ;;
2) set -- "$args0" "$args1" ;;
3) set -- "$args0" "$args1" "$args2" ;;
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=`save "$@"`
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
exec "$JAVACMD" "$@"

89
gradlew.bat vendored Normal file
View file

@ -0,0 +1,89 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega

24
settings.gradle.kts Normal file
View file

@ -0,0 +1,24 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "DW Picklist OCR Demo"
include(":app")