我尝试将Mosby library添加到我的宠物项目中,但是我不明白如何将其包含在项目中?
我尝试通过添加为模块->添加为Gradle项目来添加mosby,但是无法编译。

请,您能给我链接一些教程,如何将项目(源)添加到我的项目中以及如何使用它(我的意思是从代码访问libs类)?

谢谢!

附言项目存储在K:\ PetProject。莫斯比(Mosby):K:\ mosby。

(我的项目的)settings.gradle:

 include ':app', ':mvp', ':sample-dagger2-rx', ':sample', ':mvp-common', ':viewstate', ':sample-kotlin', ':sample-flow', ':testing', ':sample-mail', ':sample-dagger1'

build.gradle:
// Top-level build file where you can add configuration options common to all    sub-projects/modules.

buildscript {
   repositories {
       jcenter()
 }
dependencies {
    classpath 'com.android.tools.build:gradle:2.0.0-beta7'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files



  }
}

allprojects {
   repositories {
       jcenter()
  }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

在myproject \ app中的build.gradle:
apply plugin: 'com.android.application'

android {
   compileSdkVersion 23
   buildToolsVersion "23.0.2"

 defaultConfig {
    applicationId "net.simplevolk.mafiagm"
    minSdkVersion 19
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
sourceSets { main { java.srcDirs = ['src/main/java', 'src/main/java/2'] } }

}
dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.1'
    compile 'com.android.support:design:23.2.1'
    compile 'com.android.support:support-v4:23.2.1'
}

android - 如何构建和使用Mosby库?-LMLPHP

最佳答案

通过在dependenciesbuild.gradlemyproject\app部分中添加以下内容,而不是像您那样做的模块,将Mosby添加到您的项目中。

compile 'com.hannesdorfmann.mosby:mvp:2.0.1'
compile 'com.hannesdorfmann.mosby:viewstate:2.0.1' // optional viewstate feature

至于使用Mosby的教程,url at the top of the Mosby github page链接到有关库的信息,包括有关如何使用它的教程。当我开始使用Mosby时,我发现在http://hannesdorfmann.com/mosby/first-app/上浏览示例邮件应用程序很有帮助。

10-06 03:25