Home
last modified time | relevance | path

Searched refs:versionCode (Results 1 – 25 of 68) sorted by relevance

123

/frameworks/base/docs/html-intl/intl/ja/guide/publishing/
Dversioning.jd51 <li><code>android:versionCode</code> - アプリケーション コードのバージョンを他のバージョンと相対的に示す整数値。
55 …アプリケーションの最初のバージョンの versionCode を 1 に設定してリリースし、その後は各リリースについて、リリースがメジャー リリースであってもマイナー リリースであっても、値を単調…
60 <p><code>android:versionCode</code> の場合と同様に、システムではこの値をアプリケーションでユーザーに表示する以外の目的で内部的に利用することはありません。公開サー…
66 <p>ここに、<code>&lt;manifest&gt;</code> 要素の <code>android:versionCode</code> と <code>android:versionNa…
72 android:versionCode="2"
80 <p>この例では、<code>android:versionCode</code> 値は現在の .apk がこのアプリケーション コードの 2 番目のリリースを含んでいることを表し、これは <cod…
Dpreparing.jd95 …、アプリケーションのマニフェスト ファイルの <code>&lt;manifest&gt;</code> 要素の <code>android:versionCode</code> と <code>…
97 …。アプリケーションのマニフェスト ファイルの <code>&lt;manifest&gt;</code> 要素の <code>android:versionCode</code> と <code>…
/frameworks/base/services/backup/java/com/android/server/backup/
DPackageManagerBackupAgent.java100 public int versionCode; field in PackageManagerBackupAgent.Metadata
104 versionCode = version; in Metadata()
207 homeVersion = homeInfo.versionCode; in onBackup()
288 if (info.versionCode == mStateVersions.get(packName).versionCode) { in onBackup()
310 outputBufferStream.writeInt(info.versionCode); in onBackup()
316 + " version=" + info.versionCode in onBackup()
410 int versionCode = inputBufferStream.readInt(); in onRestore() local
415 + " versionCode=" + versionCode + " sigs=" + sigs); in onRestore()
427 sigMap.put(key, new Metadata(versionCode, sigs)); in onRestore()
579 int versionCode = in.readInt(); in parseStateFile() local
[all …]
/frameworks/base/core/java/android/content/pm/
DPackageInfoLite.java42 public int versionCode; field in PackageInfoLite
84 dest.writeInt(versionCode); in writeToParcel()
113 versionCode = source.readInt(); in PackageInfoLite()
DPackageInfo.java43 public int versionCode; field in PackageInfo
293 dest.writeInt(versionCode); in writeToParcel()
344 versionCode = source.readInt(); in PackageInfo()
DApplicationInfo.java637 public int versionCode; field in ApplicationInfo
695 + " versionCode=" + versionCode); in dump()
779 versionCode = orig.versionCode; in ApplicationInfo()
832 dest.writeInt(versionCode); in writeToParcel()
884 versionCode = source.readInt(); in ApplicationInfo()
/frameworks/base/services/core/java/com/android/server/am/
DProcessRecord.java414 pkgList.put(_info.packageName, new ProcessStats.ProcessStateHolder(_info.versionCode)); in ProcessRecord()
438 info.versionCode, processName); in makeActive()
446 info.versionCode, processName); in makeActive()
631 public boolean addPackage(String pkg, int versionCode, ProcessStatsService tracker) { in addPackage() argument
634 versionCode); in addPackage()
637 pkg, uid, versionCode, processName); in addPackage()
684 info.packageName, uid, info.versionCode, processName); in resetPackageList()
686 info.versionCode); in resetPackageList()
695 pkgList.put(info.packageName, new ProcessStats.ProcessStateHolder(info.versionCode)); in resetPackageList()
/frameworks/base/docs/html/tools/publishing/
Dversioning.jd66 <li><code>android:versionCode</code> &mdash; An integer value that represents
77 versionCode set to 1, then monotonically increase the value with each release,
79 that the <code>android:versionCode</code> value does not necessarily have a
90 <p>As with <code>android:versionCode</code>, the system does not use this value
101 <p>Here's an example manifest that shows the <code>android:versionCode</code>
109 android:versionCode="2"
117 <p>In this example, note that <code>android:versionCode</code> value indicates
/frameworks/base/tests/HierarchyViewerTest/
Dbuild.gradle20 versionCode 1
/frameworks/base/services/core/java/com/android/server/pm/
DPackageSettingBase.java92 int versionCode; field in PackageSettingBase
157 versionCode = base.versionCode; in PackageSettingBase()
190 this.versionCode = pVersionCode; in init()
/frameworks/data-binding/compilationTests/src/test/resources/
Dapp_build.gradle11 versionCode 1
Dmodule_build.gradle27 versionCode 1
/frameworks/data-binding/integration-tests/TestApp/app/
Dbuild.gradle12 versionCode 1
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
Dbuild.gradle28 versionCode 1
/frameworks/base/tests/SharedLibrary/lib/src/com/google/android/test/shared_library/
DSharedLibraryMain.java46 return pi.versionCode; in getVersion()
/frameworks/volley/src/main/java/com/android/volley/toolbox/
DVolley.java49 userAgent = packageName + "/" + info.versionCode; in newRequestQueue()
/frameworks/data-binding/integration-tests/MultiModuleTestApp/testlibrary/
Dbuild.gradle27 versionCode 1
/frameworks/data-binding/integration-tests/App With Spaces/app/
Dbuild.gradle28 versionCode 1
/frameworks/data-binding/integration-tests/MultiModuleTestApp/app/
Dbuild.gradle28 versionCode 1
/frameworks/data-binding/samples/BindingDemo/app/
Dbuild.gradle28 versionCode 1
/frameworks/data-binding/integration-tests/IndependentLibrary/app/
Dbuild.gradle26 versionCode 1
/frameworks/base/docs/html/training/wearables/apps/
Dpackaging.jd108 &lt;versionCode&gt;1&lt;/versionCode&gt;
115 The <code>package</code>, <code>versionCode</code>, and <code>versionName</code> are the
/frameworks/base/tools/split-select/
DMain.cpp117 int versionCode; member
165 outInfo.versionCode = xml.getAttributeData(idx); in getAppInfo()
/frameworks/base/core/java/com/android/internal/os/
DSamplingProfilerIntegration.java220 out.println("Package-Version: " + packageInfo.versionCode); in generateSnapshotHeader()
/frameworks/data-binding/extensions/baseAdapters/
Dbuild.gradle28 versionCode 1

123