2016-10-25 207 views
0

MySQLコネクタを置くとエラーが発生します。その理由はわかりません。Android StudioでMySqlを接続する

ここで調べたところ(stackoverflow)、build.gradleアプリケーションやモジュールを変更しようとしましたが、機能しません。誰もが、それは私をたくさん助けになる問題は何を知っている場合..

エラーありがとう:

build.gradleアプリ:私は私のコードを追加

Error:Error converting bytecode to dex: 
Cause: Dex cannot parse version 52 byte code. 
This is caused by library dependencies that have been compiled using Java 8 or above. 
If you are using the 'java' gradle plugin in a library submodule add 
targetCompatibility = '1.7' 
sourceCompatibility = '1.7' 
to that submodule's build.gradle file. 


Error:Execution failed for task ':app:transformClassesWithDexForDebug'. 
> com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException: Return code 1 for dex process 

Errors in Android Studio

を:

apply plugin: 'com.android.application' 


android { 
    compileSdkVersion 24 
    buildToolsVersion "24.0.3" 
    defaultConfig { 
     applicationId "com.example.informatica.xabiagame" 
     minSdkVersion 15 
     targetSdkVersion 24 
     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(include: ['*.jar'], dir: 'libs') 
    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:24.2.1' 
    compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha9' 
    compile 'com.android.support:design:24.2.1' 
    compile 'com.google.android.gms:play-services-maps:9.6.1' 
    compile 'com.google.android.gms:play-services-ads:9.6.1' 
    compile 'com.google.android.gms:play-services:9.6.1' 
    testCompile 'junit:junit:4.12' 
    compile 'com.google.android.gms:play-services-auth:9.6.1' 
    compile project(':MySQL') 
} 

apply plugin: 'com.google.gms.google-services' 

プロジェクトモジュール:

buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.2.2' 
     classpath 'com.google.gms:google-services:3.0.0' 

     // 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 
} 

MySQLのモジュール:

configurations.maybeCreate("default") 
artifacts.add("default", file('mysql-connector-java-5.1.37-bin.jar')) 

答えて

1

は少し遅れてマイ、私はちょうどこの問題の解決策を見つけた:

  1. のMySQLコネクタ5.1は、Java 8
  2. でコンパイルされています
  3. 今でもAndroid Studio 2.3はJava 8を直接サポートしていません。
  4. あなたはこのコードをapp/build.gradleに書くことができます:

    android { 
        defaultConfig 
        { 
         jackOptions 
         { 
         enabled true 
         } 
        compileOptions 
        { 
         sourceCompatibility JavaVersion.VERSION_1_8 
         targetCompatibility JavaVersion.VERSION_1_8 
        } 
        } 
    

    https://developer.android.com/guide/platform/j8-jack.html

関連する問題