我正在学习android,发现这个扩展非常有助于学习。
我在项目中添加了一个.aar文件
https://github.com/hbb20/CountryCodePickerProject
来自我在示例项目中在youtube上看到的方法,幸好在完整过程中没有出现任何错误。 但是,当我在手机上安装我的示例应用程序的apk时,它是强制关闭所有Android版本(6.0和7.1.1我已经检查)。它正在给予
Application Error - Unfortunately, the App has stopped
当我点击屏幕上完美显示的选择器时。
但问题是国家代码选择器没有进入屏幕并且应用程序部队关闭。
你能帮我解决这个问题。 我很感激你。
我假设gradle中存在一些问题。不知道我是否正确。
这是我用gradle编写的部分
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.test.app"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:26.+'
testCompile 'junit:junit:4.12'
compile project(':ccp')
}