我的应用程序运行正常。我希望用户在Facebook上的应用程序中共享上一次活动EdiText显示的文本。为此,我遵循了本教程。 https://developers.facebook.com/docs/android/getting-started/ 主题:共享和发送对话框。 我遵循了以下步骤: 将mavenCentral()添加到存储库中。
将以下行添加到依赖项。 编译'com.facebook.android:facebook-share:[5,6)'
此后,我收到错误消息: 实施'com.android.support:support-v7:28.0.0'
因此,在这里我将v7更改为v4 实施'com.android.support:support-v4:28.0.0'
此步骤重建后,没有错误。
我运行了该应用程序,但该应用程序显示“应用程序无响应,关闭或等待”
我再次尝试过,但是该应用看起来像是冻结了,然后关闭了自己。
下面的代码是build.gradle:模块应用
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.dumdum.newapp"
minSdkVersion 27
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.facebook.android:facebook-share:[5,6)'
}
我想在这里删除错误。 实施'com.android.support:support-v7:28.0.0'
我想将其更改为 实施'com.android.support:support-v4:28.0.0'
仍然存在相同的错误。
事件日志没有错误。
但是当单击下面的这一行时,其旁边将显示错误框:
implementation 'com.android.support:support-v7:28.0.0'
OR
implementation 'com.android.support:support-v4:28.0.0'
我无法添加错误框,因为Stackoverflow将该部分视为垃圾邮件。