我正在尝试开发一个应用程序,它将使用票证给用户验证它们的能力.我想知道为什么我应该选择Aztec条形码,因为许多公司已经选择了而不是QR码.Aztec条形码的优点是什么?
到目前为止,我发现的良好比较是:http: //www.tec-it.com/en/support/knowbase/barcode-overview/2d-barcodes/Default.aspx
在这里:http:http://en.wikipedia.org/wiki/Aztec_Code on Usage部分你可以看到它经常被使用.
尝试构建我的应用程序时出现以下错误:
错误:无法访问未找到 com.google.android.gms.internal.zzbfm 的 zzbfm 类文件
这是我的 build.gradle 文件代码:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "myapplicationid"
minSdkVersion 21
targetSdkVersion 27
multiDexEnabled true
versionCode 12
versionName "1.0.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
signingConfigs {
key {
keyAlias 'anavasis'
keyPassword 'anavasis'
storeFile file('jks_file_path')
storePassword 'anavasis'
}
}
buildTypes {
debug {
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets { main { res.srcDirs = ['src/main/res', 'src/main/res/anim'] } }
allprojects {
repositories { …Run Code Online (Sandbox Code Playgroud)