当前位置: 移动技术网 > 移动技术>移动开发>Android > 词条国际化开发规范Demo

词条国际化开发规范Demo

2020年07月09日  | 移动技术网移动技术  | 我要评论

1、build文件

1.1、Project的

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.0.0"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

1.2、APP的

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"

    defaultConfig {
        applicationId "com.gs.wstest"
        minSdkVersion 24
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
 

本文地址:https://blog.csdn.net/songzi1228/article/details/107210835

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网