android studio 中的build.gradle

Posted yacbo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android studio 中的build.gradle相关的知识,希望对你有一定的参考价值。

apply plugin: ‘com.android.application‘

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.example.lenovo.cmakedemo"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        externalNativeBuild {
            cmake {
                cppFlags "-std=c++14 -frtti -fexceptions"
            }
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile(‘proguard-android.txt‘), ‘proguard-rules.pro‘
        }
    }
    externalNativeBuild {
        cmake {
            path "CMakeLists.txt"
        }
    }
}

dependencies {
    androidTestCompile(‘com.android.support:support-annotations:26.1.0‘) {
        force = true
    }
    implementation fileTree(dir: ‘libs‘, include: [‘*.jar‘])
    implementation ‘com.android.support:appcompat-v7:26.1.0‘
    implementation ‘com.android.support.constraint:constraint-layout:1.1.2‘
    testImplementation ‘junit:junit:4.12‘
    androidTestImplementation ‘com.android.support.test:runner:1.0.2‘
    androidTestImplementation ‘com.android.support.test.espresso:espresso-core:3.0.2‘
}

以上是关于android studio 中的build.gradle的主要内容,如果未能解决你的问题,请参考以下文章

如何更新android studio中的ndk

使用 react-native run-android 运行时出现 React-Native 错误

大神, 我的android studio中的虚拟机怎么联网?

android studio怎样运行打包后的apk

Android 依赖 '..' 对于编译 (..) 和运行时 (..) 类路径有不同的版本

无法按照 Google“入门”页面中的说明在 Android Studio 中添加地图; Android Studio 报错