我正在尝试将条形码扫描仪添加到我的android应用中。我正在使用API 29,并且正在遵循Google的指南Barcode Scanner。该指南告诉我添加以下两行:
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.google.android.gms:play-services:7.8+'
第一行默认是我的应用程序,即:
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
但是第二行我找不到任何地方。如何将GMS添加到AndroidX?
答案 0 :(得分:0)
请在gradle.properties文件中添加这两行
android.useAndroidX=true
android.enableJetifier=true