You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>It refers to the <code>.android</code> file in your project root directory.</p>
316
+
<p>It is used to store certain configuration settings for the Android CLI. It is created when you either initialize a new project or run <code>android link</code>.</p>
317
+
<pre><codeclass="language-ron">// DO NOT MODIFY; Generated by Android CLI for internal usage.
<p>The file is a RON file (Rusty Object Notation). It is kinda like JSON, but with a heavy rusty influence. You can read more about it <ahref="https://github.com/ron-rs/ron">here</a>.</p>
<p>The name of the project. This is the name you gave when you initialized the project. Usually, it is the name of the directory that contains your project.</p>
<p>This is the package identifier or package name of your app. The convention comes from Java apps. It is used to uniquely identify your app on the device and on the Play Store. It is usually in the form of <code>com.example.appname</code>.</p>
332
+
<h3id="gen-at-version"><aclass="header" href="#gen-at-version">Gen at version</a></h3>
333
+
<p>This is the version of the Android CLI that generated this file. It is used to determine if the file is compatible with the current version of the CLI. This is used to prevent breaking changes from breaking your project.</p>
<p>This is the name of the main activity of your app. This is the activity that is launched when your app is opened. It is usually left untouched as <code>MainActivity</code>.</p>
<p>It is not recommended to modify this file manually. It is generated and updated by the CLI. In the future, the CLI will be able to perform migrations on your project and update this file for you automatically.</p>
<h2id="1-isnt-there-already-an-android-tool-that-ships-with-the-android-sdk"><aclass="header" href="#1-isnt-there-already-an-android-tool-that-ships-with-the-android-sdk">1. Isn't there already an <code>android</code> tool that ships with the android SDK?</a></h2>
318
340
<p>Yes, there is an <code>android</code> bash script that comes with the Android SDK. However, it has been deprecated, and its functionalities have been absorbed into Android Studio, making it the only supported option for Android development. This decision has frustrated developers who prefer to use a CLI to manage their projects.</p>
<p>It refers to the <code>.android</code> file in your project root directory.</p>
182
+
<p>It is used to store certain configuration settings for the Android CLI. It is created when you either initialize a new project or run <code>android link</code>.</p>
183
+
<pre><codeclass="language-ron">// DO NOT MODIFY; Generated by Android CLI for internal usage.
<p>The file is a RON file (Rusty Object Notation). It is kinda like JSON, but with a heavy rusty influence. You can read more about it <ahref="https://github.com/ron-rs/ron">here</a>.</p>
<p>The name of the project. This is the name you gave when you initialized the project. Usually, it is the name of the directory that contains your project.</p>
<p>This is the package identifier or package name of your app. The convention comes from Java apps. It is used to uniquely identify your app on the device and on the Play Store. It is usually in the form of <code>com.example.appname</code>.</p>
198
+
<h3id="gen-at-version"><aclass="header" href="#gen-at-version">Gen at version</a></h3>
199
+
<p>This is the version of the Android CLI that generated this file. It is used to determine if the file is compatible with the current version of the CLI. This is used to prevent breaking changes from breaking your project.</p>
<p>This is the name of the main activity of your app. This is the activity that is launched when your app is opened. It is usually left untouched as <code>MainActivity</code>.</p>
<p>It is not recommended to modify this file manually. It is generated and updated by the CLI. In the future, the CLI will be able to perform migrations on your project and update this file for you automatically.</p>
0 commit comments