Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> greendao3.2.3配置時遇到的有關問題

greendao3.2.3配置時遇到的有關問題

編輯:Android開發教程

greendao3.2.3配置時遇到的問題

這兩天我一直在研究greendao這個框架,我在GitHub下載了

greendao3.2.2:https://github.com/greenrobot/greenDAO,照著網址裡面來配置:

// In your root build.gradle file:
buildscript {
    repositories {
        jcenter()
        mavenCentral() // add repository
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.1'
        classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin
    }
}
 
// In your app projects build.gradle file:
apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao' // apply plugin
 
dependencies {
    compile 'org.greenrobot:greendao:3.2.2' // add library
}

後來發現配置後並不能創建項目並報了如下錯誤:
Error:Unable to find method 'org.gradle.api.tasks.TaskInputs.file(Ljava/lang/Object;)Lorg/gradle/api/tasks/TaskInputFile......

我去網上找了很久都沒有找到解決辦法,又迷迷糊糊沖撞了一整天...

後來我仔細看了一下報錯,感覺問題出現在了gradle版本上而不是Android studio上,我之前用的gradle版本是
gradle-2.14.1-all,和Android studio2.2.2版本

解決問題:
後來我在官網:https://services.gradle.org/distributions/中下載了gradle-3.5-all版本並且在Android studio
中file->settings->build,execution,deployment->Gradie

點擊OK 就成功解決掉了問題

希望這個配置問題解決方法對你們有用

越努力 越幸運

 


 
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved