Skip to content

Commit

Permalink
发布1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IronSublimate committed Jan 25, 2021
1 parent fbc2153 commit aaee615
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
/captures
.externalNativeBuild
.cxx
/app/src/main/jni/ncnn-android-vulkan-lib
/app/src/main/jni/ncnn-android-vulkan-lib
/app/release/
12 changes: 8 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
lintOptions {
checkReleaseBuilds false
abortOnError false
}
defaultConfig {
applicationId "com.ironsublimate.ncnn_objectdetection"
archivesBaseName = "$applicationId"
Expand Down Expand Up @@ -33,7 +37,7 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug{
debug {

}
}
Expand All @@ -49,11 +53,11 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
def camerax_version = "1.0.0-alpha05"
def camerax_version = "1.0.0-alpha12"
implementation "androidx.camera:camera-camera2:${camerax_version}"
implementation "androidx.camera:camera-lifecycle:${camerax_version}"
implementation 'androidx.camera:camera-view:1.0.0-alpha12'
implementation 'androidx.camera:camera-extensions:1.0.0-alpha12'
implementation "androidx.camera:camera-view:${camerax_version}"
implementation "androidx.camera:camera-extensions:${camerax_version}"
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'org.jetbrains:annotations:15.0'
implementation 'org.jetbrains:annotations:15.0'
Expand Down

0 comments on commit aaee615

Please sign in to comment.