1. 程式人生 > >開發一個AndroidAPP的大致流程

開發一個AndroidAPP的大致流程

一、建立一個專案

 

此時APP構建完成,就會跳轉到這個頁面

點選右上角的重構Sync Now ,如果出現什麼問題,一般都是上圖2 build.gradle引數配置的問題。修改一下後面是(Modle;app)的build.gradle的引數就可以,要和自己Android studio 的下載的SDK相匹配的引數。

二、初始化一些引數

這是我電腦上build.gradle配置的引數

apply plugin: 'com.android.application'

android {
  compileSdkVersion 26
  buildToolsVersion "27.0.3"
  defaultConfig {
    applicationId "cn.edu.xidian.amaptestv5"
    minSdkVersion 21
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  }
  buildTypes {
    release {
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
  }
}

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:26.+'
  compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
  testCompile 'junit:junit:4.12'
}