在Android Studio中安装/使用J2V8

时间:2016-11-17 21:14:04

标签: android android-studio j2v8

我是Android Studio开发的新手,以及gradle和j2v8。 我有一个示例Hello World应用程序,并希望在其中使用j2v8(仅用于好奇心)。我的应用程序gradle中有以下内容

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    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'
    testCompile 'junit:junit:4.12'
    // https://mvnrepository.com/artifact/com.eclipsesource.j2v8/j2v8_android
    compile group: 'com.eclipsesource.j2v8', name: 'j2v8_android', version: '3.0.5'
}

最后一个是我尝试添加j2v8。 接下来,我尝试了this post的示例行,因此我将以下内容添加到我的活动中:

V8 v8 = V8.createV8Runtime();

我不明白的是我需要哪些进口工作。我必须缺少一个或多个步骤,但很难在线查找说明。

感谢。

2 个答案:

答案 0 :(得分:3)

使用 编译组:'com.eclipsesource.j2v8',名称:'j2v8_android',版本:'3.0.5' ,添加import com.eclipsesource.v8 .V8也行不通。

更改为使用 compile'c​​om.eclipsesource.j2v8:j2v8_android:3.0.5 @aar' 正常工作。

答案 1 :(得分:0)

我自己的解决方案:

  1. here

  2. 下载3.0.5 aar文件
  3. these directions

  4. 之后通过Android工作室添加为模块