java - 谷歌播放 .为什么我有 OpenGL ES 2.0+ 而不是 1.0

标签 java android

嗨,我是一名初级 java 和 android 开发人员,我想将我的应用程序放入 google 标记。当我的应用程序加载到谷歌控制台时,我看到我有 openGL SE 2.0+ 我不知道为什么我的应用程序是 OpenGL ES 2.0+,为什么我有这个?我使用 lamda 表达式,它是我的 build.gradle :

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'me.tatarka.retrolambda'


buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {

        classpath 'io.fabric.tools:gradle:1.22.2'
    }
}

repositories {
    mavenCentral()
    maven { url "https://jitpack.io" }
    maven { url 'https://maven.fabric.io/public' }

}

android {
    signingConfigs {
        config {
            keyAlias '***'
            keyPassword '***'
            storeFile file('D:/**.jks')
            storePassword '***'
        }
        defaultConfig {
            buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
            buildConfigField 'String', 'BUILD_TIME', 'new java.text.SimpleDateFormat("MM.dd.yy HH:mm", java.util.Locale.GERMANY).format(new java.util.Date(' + System.currentTimeMillis() + 'L))'

        }
    }

    dexOptions {
        javaMaxHeapSize "4g"
    }
    compileSdkVersion 27
    buildToolsVersion '26.0.2'

    defaultConfig {
        applicationId "**.***.****"
        minSdkVersion 19
        targetSdkVersion 27
        versionCode 48
        versionName "1.4.7"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        ndk {
            abiFilters "armeabi-v7a", "x86", "armeabi"
        }
        multiDexEnabled true


    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }
    sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] } }

    compileOptions {
        targetCompatibility 1.8
        sourceCompatibility 1.8
    }
}

configurations.all {
    resolutionStrategy {
        force 'com.android.support:recyclerview-v7:23.1.1'
        force 'com.android.support:support-annotations:23.1.1'
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    compile(group: 'org.simpleframework', name: 'simple-xml', version: '2.7.1') {
        exclude module: 'stax'
        exclude module: 'stax-api'
        exclude module: 'xpp3'
    }

    compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'

    compile('io.socket:socket.io-client:1.0.0') {
        // excluding org.json which is provided by Android
        exclude group: 'org.json', module: 'json'
    }

    compile group: 'com.google.guava', name: 'guava', version: '19.0'

    compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.2.0'
    compile group: 'com.squareup.picasso', name: 'picasso', version: '2.5.0'

    compile('com.crashlytics.sdk.android:crashlytics:2.8.0@aar') {
        transitive = true;
    }
    compile('com.crashlytics.sdk.android:crashlytics-ndk:1.1.6@aar') {
        transitive = true;
    }

    compile 'com.loopj.android:android-async-http:1.4.9'
    compile 'com.android.support:appcompat-v7:24.2.0'
    compile 'com.android.support:design:24.2.0'
    compile 'com.daimajia.swipelayout:library:1.2.0@aar'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'net.zetetic:android-database-sqlcipher:3.5.4@aar'
    compile 'com.squareup.moshi:moshi:1.2.0'
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
    compile 'com.google.code.gson:gson:2.7'
    compile 'org.jsoup:jsoup:1.11.1'
    compile 'com.android.support:multidex:1.0.1'
    testCompile 'junit:junit:4.12'
    compile group: 'joda-time', name: 'joda-time', version: '2.3'
    compile 'com.google.android.gms:play-services:9.2.0'
    compile group: 'commons-io', name: 'commons-io', version: '2.6'
    compile 'org.greenrobot:eventbus:3.0.0'

}

当我想要 OpenGL ES 1.0+ 时我必须做什么

最佳答案

可能您必须阅读有关库的文档。

关于java - 谷歌播放 .为什么我有 OpenGL ES 2.0+ 而不是 1.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52473669/

相关文章:

android - 调用 notifyDataSetChanged() 多次执行 getView()

android - 通过通知提示用户 - 需要向用户反馈吗?

带有嵌入式配置单元的java Thrift客户端?

java - 有条件的类导入

android - 所选设备不兼容 - Android Studio

android - 2.3 上带有完成 SoftInput 操作标签的多行 EditText

android - 当用户第一次打开我们的应用程序时实现滑动图像

java - 实现按位 XNOR

java - 使用正则表达式

Javassist 和命名内部类