Zum Inhalt springen

Android Training/Creating an Android Project/en: Unterschied zwischen den Versionen

Neue Version von externer Quelle importiert
(Übernehme Bearbeitung einer neuen Version der Quellseite)
(Neue Version von externer Quelle importiert)
 
Zeile 31: Zeile 31:
<code>app/build.gradle</code>
<code>app/build.gradle</code>
* Android Studio uses Gradle to compile and build your app. There is a <code>build.gradle</code> file for each module of your project, as well as a <code>build.gradle</code> file for the entire project. Usually, you're only interested in the<code>build.gradle</code> file for the module, in this case the <code>app</code> or application module. This is where your app's build dependencies are set, including the <code>defaultConfig</code> settings:
* Android Studio uses Gradle to compile and build your app. There is a <code>build.gradle</code> file for each module of your project, as well as a <code>build.gradle</code> file for the entire project. Usually, you're only interested in the<code>build.gradle</code> file for the module, in this case the <code>app</code> or application module. This is where your app's build dependencies are set, including the <code>defaultConfig</code> settings:
** <code>compiledSdkVersion</code> is the platform version against which you will compile your app. By default, this is set to the latest version of Android available in your SDK. (It should be Android 4.1 or greater; if you don't have such a version available, you must install one using the [[SDK Manager]].) You can still build your app to support older versions, but setting this to the latest version allows you to enable new features and optimize your app for a great user experience on the latest devices.
** <code>applicationId</code> is the fully qualified package name for your application that you specified during the New Project workflow.
** <code>minSdkVersion</code> is the Minimum SDK version you specified during the New Project workflow. This is the earliest version of the Android SDK that your app supports.
** <code>targetSdkVersion</code> indicates the highest version of Android with which you have tested your application. As new versions of Android become available, you should test your app on the new version and update this value to match the latest API level and thereby take advantage of new platform features. For more information, read [[Spezial:MyLanguage/Android Training/Supporting Different Platform Versions|Supporting Different Platform Versions]].
* See [http://developer.android.com/sdk/installing/studio-build.html Building Your Project with Gradle] for more information about Gradle.
Note also the <code>/res</code> subdirectories that contain the [http://developer.android.com/guide/topics/resources/overview.html resources] for your application:
** <code>compiledSdkVersion</code> is the platform version against which you will compile your app. By default, this is set to the latest version of Android available in your SDK. (It should be Android 4.1 or greater; if you don't have such a version available, you must install one using the [[SDK Manager]].) You can still build your app to support older versions, but setting this to the latest version allows you to enable new features and optimize your app for a great user experience on the latest devices.
** <code>compiledSdkVersion</code> is the platform version against which you will compile your app. By default, this is set to the latest version of Android available in your SDK. (It should be Android 4.1 or greater; if you don't have such a version available, you must install one using the [[SDK Manager]].) You can still build your app to support older versions, but setting this to the latest version allows you to enable new features and optimize your app for a great user experience on the latest devices.
** <code>applicationId</code> is the fully qualified package name for your application that you specified during the New Project workflow.
** <code>applicationId</code> is the fully qualified package name for your application that you specified during the New Project workflow.
372

Bearbeitungen

Cookies helfen uns bei der Bereitstellung von Android Wiki. Durch die Nutzung von Android Wiki erklärst du dich damit einverstanden, dass wir Cookies speichern.