我想包括一個庫項目(Android Studio Project)的另一個Android Studio項目(應用程序)。圖書館項目有一個活動,我想從我的應用程序啓動。Gradle Sync:無法解析(庫名稱)
我在Gradle Sync期間出現錯誤。
我得到這些錯誤:
我已經通過其他問題#1了。
我添加了庫項目File-> New-> New Module-> Import Gradle Project。
我在我的庫項目中做了以下更改。 我在庫項目的build.gradle中添加了以下行。
apply plugin: 'com.android.library'
我已評論ApplicationID。
在settings.gradle,我已經加入
include ":LibraryName"
在應用程序中的build.gradle,我加入
compile project(":LibraryName")
缺少什麼我在這裏?
編輯:添加應用程序的文件的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "com.viga.nativeapp"
minSdkVersion 22
targetSdkVersion 25
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(dir: 'libs', include: ['*.jar'])
compile project(":VimeoVideoPlayer")
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:25.0.1'
testCompile 'junit:junit:4.12'
}
Settings.gradle
include ':app', ':VimeoVideoPlayer'
發佈您的應用程序gradle和設置gradle –
@BhuvaneshBs:添加build.gradle。 settings.gradle只有以下行 ** include':app',':VimeoVideoPlayer'** – sujay
Post setting.gradle還有 –