Skip to content

Commit 5545feb

Browse files
v1.0.0+gh.r3
1 parent 91e35fd commit 5545feb

File tree

45 files changed

+584
-580
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+584
-580
lines changed

composite-builds/build-logic/common/src/main/java/com/tom/rv2ide/build/config/ProjectConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ val Project.projectVersionCode: Int
6363
get() {
6464

6565
// I don't like this being hardcoded here, so change it if you want.
66-
val baseVersionCode = System.getenv("PROJECT_CONFIG_KT_BASE_VERSION_CODE")?.toIntOrNull() ?: 1022
66+
val baseVersionCode = System.getenv("PROJECT_CONFIG_KT_BASE_VERSION_CODE")?.toIntOrNull() ?: 1024
6767
// Default value (1020) is used if not specified. The middle digit (e.g., 10<2>0) represents the revision version, such as 1.0.0+gh.r0<2>.
6868

6969
val versionCode = baseVersionCode

composite-builds/build-logic/plugins/src/main/java/com/tom/rv2ide/plugins/conf/AndroidModuleConf.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import org.gradle.api.provider.Provider
3939
* For example, if the base version code of the IDE is 270 (for v2.7.0), then for arm64-v8a flavor,
4040
* the version code will be `100 * 270 + 1` i.e. `27001`
4141
*/
42-
internal val flavorsAbis = mapOf("arm64-v8a" to 1, "armeabi-v7a" to 1)
42+
internal val flavorsAbis = mapOf("arm64-v8a" to 0, "armeabi-v7a" to 0)
4343

4444
fun Project.configureAndroidModule(coreLibDesugDep: Provider<MinimalExternalModuleDependency>) {
4545
val isAppModule = plugins.hasPlugin("com.android.application")

core/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
android:name=".app.IDEApplication"
3939
android:preserveLegacyExternalStorage="true"
4040
android:requestLegacyExternalStorage="true"
41-
android:resizeableActivity="false"
41+
android:resizeableActivity="true"
4242
android:supportsRtl="true"
4343
android:theme="@style/Theme.AndroidIDE"
4444
android:networkSecurityConfig="@xml/network_security_config"

core/app/src/main/java/com/tom/rv2ide/fragments/sidebar/utils/AIDialogUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ package com.tom.rv2ide.fragments.sidebar.utils
2020
import android.content.Context
2121
import com.google.android.material.dialog.MaterialAlertDialogBuilder
2222

23-
/*
23+
/* // DEPRECATED
2424
* @author Mohammed-baqer-null @ https://github.com/Mohammed-baqer-null
2525
*/
2626

core/app/src/main/java/com/tom/rv2ide/fragments/sidebar/utils/AIResponseHandler.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import com.tom.rv2ide.utils.ProjectHelper
2626
import kotlinx.coroutines.launch
2727
import org.slf4j.LoggerFactory
2828

29-
/*
29+
/* !! DEPRECATED
3030
* @author Mohammed-baqer-null @ https://github.com/Mohammed-baqer-null
3131
*/
3232
enum class ResponseMode {

core/app/src/main/java/com/tom/rv2ide/fragments/sidebar/utils/Agents.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
package com.tom.rv2ide.fragments.sidebar.utils
1818

19-
/*
19+
/* !! DEPRECATED
2020
* @author Mohammed-baqer-null @ https://github.com/Mohammed-baqer-null
2121
*/
2222

core/app/src/main/java/com/tom/rv2ide/fragments/sidebar/utils/LiveResponseRenderer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import com.google.android.material.card.MaterialCardView
3535
import com.google.android.material.textview.MaterialTextView
3636
import org.slf4j.LoggerFactory
3737

38-
/*
38+
/* !! DEPRECATED
3939
* @author Mohammed-baqer-null @ https://github.com/Mohammed-baqer-null
4040
*
4141
* Renders live streaming AI responses with proper code boxes
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
o/classes

external/acsprovider/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"kind": "Directory"
66
},
77
"applicationId": "com.tom.androidcodestudio.acsprovider",
8-
"variantName": "debug",
8+
"variantName": "release",
99
"elements": [
1010
{
1111
"type": "SINGLE",

external/acsprovider/build/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml

Lines changed: 116 additions & 116 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)