1

我想使用 Cotter 作为 Firebase 验证电话的替代方案。我按照以下步骤操作: Cotter 页面:使用我们的 Android SDK 在您的移动应用中验证电子邮件和电话号码

但是在尝试同步 gradle 时出现此错误:无法解决:com.github.cotterapp:android-sdk:0.3.0

代码是:

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.preference:preference:1.1.1'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

implementation 'com.google.android.material:material:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'androidx.navigation:navigation-fragment:2.3.0'
implementation 'androidx.navigation:navigation-ui:2.3.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'

//Cotter
implementation 'com.github.cotterapp:android-sdk:0.3.0'
}

而且我还想知道如何执行此操作:对于第 2 步,我需要使用您的 API_KEY_ID 初始化 Cotter。使用此代码:

Cotter.init(this.getApplicationContext(), 
         "https://www.cotter.app/api/v0",
         <API_KEY_ID>);

我必须把这段代码放在哪里?

4

0 回答 0