Skip to content

Commit

Permalink
build optimisations
Browse files Browse the repository at this point in the history
  • Loading branch information
duckysmacky committed Feb 17, 2024
1 parent 64403eb commit 9ce5326
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
3 changes: 2 additions & 1 deletion app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@
.externalNativeBuild
.cxx
local.properties
key.jks
key.jks
builds
16 changes: 4 additions & 12 deletions app/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ plugins {
android {
namespace 'com.signsense.app'
compileSdk 34
String appVersion = "1.0.0"

defaultConfig {
applicationId "com.signsense.app"
minSdk 26
targetSdk 34
versionCode 1
versionName "1.0.0"
versionName appVersion

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand All @@ -21,9 +22,11 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
applicationIdSuffix 'signsense'
versionNameSuffix appVersion
}
debug {
applicationIdSuffix 'signsense'
versionNameSuffix appVersion
}
}

Expand Down Expand Up @@ -54,17 +57,6 @@ dependencies {
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0'
implementation 'androidx.preference:preference:1.2.1'

testImplementation 'junit:junit:4.13.2'

androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

// Android Camera
implementation 'androidx.camera:camera-core:1.3.1'
implementation 'androidx.camera:camera-camera2:1.3.1'
implementation 'androidx.camera:camera-lifecycle:1.3.1'
implementation 'androidx.camera:camera-view:1.3.1'

// OpenCV
//implementation 'com.quickbirdstudios:opencv-contrib:4.5.3.0'
implementation project(':opencv')
Expand Down

0 comments on commit 9ce5326

Please sign in to comment.