如何在android studio

时间:2017-01-30 20:25:44

标签: android android-studio

所以我跟android studio一起学习如何开发基本的android应用程序,但我对构建类型有问题。 这本书告诉我创建一个不同的构建类型,并让我编辑我刚刚创建的项目的build.gradle文件(我甚至不知道这是否是正确的英文,但..)所以它看起来像这样: http://imgur.com/a/0bkyz 比它告诉我,我必须创建" perf"带有java和res文件夹的文件夹,里面有我需要的所有默认文件(java文件和值),但我不知道怎么做... 请不要理解我的想法,我在这里阅读424320其他讨论...... 目录应该如何: http://imgur.com/a/zSrMX

build.gradle文件:

 apply plugin: 'com.android.application'

 android {
 signingConfigs {
     config {
     }
 }
 compileSdkVersion 25
 buildToolsVersion "25.0.1"
 defaultConfig {
     applicationId "com.example.mario.apobus"
     minSdkVersion 16
     targetSdkVersion 25
     versionCode 1
     versionName "1.0"
     testInstrumentationRunner        
"android.support.test.runner.AndroidJUnitRunner"
 }
 buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), '  
'proguard-rules.pro'
     }
    perf.initWith(buildTypes.debug)
     perf {
        applicationIdSuffix ".pref"
        versionNameSuffix "-perf"
        buildConfigField "String", "PERF_URL",   
 "\"https://myperfserver/data\""
    }
}
}

  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:25.0.1'
   testCompile 'junit:junit:4.12'

  }

0 个答案:

没有答案