apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.dothis.facebook"
minSdkVersion 16
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.facebook.android:facebook-android-sdk:4.6.0'
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.dothis.facebook" >
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id" />
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
这是因为您为编译编写了错误的依赖项信息。
是SDK不是SADK。
编译'com.facebook.android:facebook-android-sdk:4.0.0
我在为ZBarScannerActivityLib库项目从命令行执行gradle build时收到此错误。详细错误消息如下 *配置项目“:ZBARScannerActivityLib”时出现问题。
我似乎无法获得最新版本的构建工具。我怀疑这与Gradle的代理设置有关。我已经很好地看了网上,但仍然不能找到一个解决办法。我用的是2.1级。 SystemProp.http.ProxyHost=代理SystemProp.http.ProxyPort=80 SystemProp.http.ProxyUser=MyUserName SystemProp.http.ProxyPassword=密码 Sy
我想建立我的第一个android hello world应用程序,但得到了这个错误,知道是怎么回事吗? 错误:配置项目“:App”时出现问题。 无法解析配置“:app:_debugcompile”的所有依赖项。找不到任何与com.android.support匹配的版本:AppCompat-v7:15.+.不匹配的版本:23.1.0 23.0.1 23.1.0 22.2.1 22.2.0+在以下位
我是Android studio的新手,在编译从codecanyon购买的Android项目时,我一直面临这种错误。“我错过了什么”? 无法解决配置的所有依赖项: app: dedegRuntimeClasspath。无法确定io.realm的工件:领域-Android-库-对象-服务器:4.3.1:离线模式下没有可用的缓存版本
谁能帮我修一下吗 android:failed无法解析配置的所有依赖项:app:debugRuntimeClasspath未能在C:\Users\MB\AppData\Local\android\Sdk中找到哈希字符串为“1.3.50”的目标 这来自事件日志 20:29 Gradle sync启动20:29 Gradle sync失败:无法解决配置的所有依赖项:app: dedegRuntimeC
新安装的Android studio 3.1.3在制作新项目和第一次编译时出现了奇怪的依赖错误。 一个无助于解决问题的类似问题。 这个问题在我身上发生过几次,强制https或http也不能解决它