Sugar ORMのドキュメントによると、次の行を使用したとのことです
いつでも使う
compile 'com.github.satyan:sugar:1.3'
私のGradleでは次のようになります。
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.github.satyan:sugar:1.3'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:support-v4:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.google.android.gms:play-services:8.1.0'
compile 'com.google.android.gms:play-services-ads:8.1.0'
compile 'com.google.android.gms:play-services-identity:8.1.0'
compile 'com.google.android.gms:play-services-gcm:8.1.0'
}
いつでも使う
compile 'com.github.satyan:sugar:1.3'
コンパイル時に次のエラーが発生します
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/home/amit/android-sdk-linux_86/build-tools/22.0.1/aapt'' finished with non-zero exit value 1
失敗した
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/home/amit/android-sdk-linux_86/build-tools/23.0.1/aapt'' finished with non-zero exit value 1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
しかし、それを削除するたびに、正常にビルドされます。
sugarORM を使用したいのですが、どうすれば使用できますか?