Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 87f729a

Browse files
committed
Fixed import issue
1 parent 595d663 commit 87f729a

File tree

6 files changed

+7
-21
lines changed

6 files changed

+7
-21
lines changed

app/release/output-metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"type": "SINGLE",
1212
"filters": [],
1313
"attributes": [],
14-
"versionCode": 212,
15-
"versionName": "2.1.2-beta",
14+
"versionCode": 213,
15+
"versionName": "2.1.3-beta",
1616
"outputFile": "app-release.apk"
1717
}
1818
],

app/src/main/java/com/itsaky/androidide/EditorActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import static com.blankj.utilcode.util.IntentUtils.getShareTextIntent;
2323
import static com.itsaky.androidide.preferences.internal.GeneralPreferencesKt.NO_OPENED_PROJECT;
2424
import static com.itsaky.androidide.preferences.internal.GeneralPreferencesKt.setLastOpenedProject;
25-
import static com.itsaky.androidide.resources.R.string;
25+
import static com.itsaky.androidide.R.*;
2626
import static com.itsaky.toaster.ToastUtilsKt.toast;
2727
import static com.itsaky.toaster.ToastUtilsKt.toastInfo;
2828

common/src/main/java/com/itsaky/androidide/app/BaseIDEActivity.kt

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,6 @@
1414
* You should have received a copy of the GNU General Public License
1515
* along with AndroidIDE. If not, see <https://www.gnu.org/licenses/>.
1616
*/
17-
18-
/**
19-
* This file is part of AndroidIDE.
20-
*
21-
* AndroidIDE is free software: you can redistribute it and/or modify it under the terms of the GNU
22-
* General Public License as published by the Free Software Foundation, either version 3 of the
23-
* License, or (at your option) any later version.
24-
*
25-
* AndroidIDE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
26-
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27-
* General Public License for more details.
28-
*
29-
* You should have received a copy of the GNU General Public License along with AndroidIDE. If not,
30-
* see <https:></https:>//www.gnu.org/licenses/>.
31-
*/
3217
package com.itsaky.androidide.app
3318

3419
import android.Manifest.permission

settings.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
rootProject.name = "AndroidIDE"
2+
include ':annotation-processors'
3+
include ':annotations'
24
include ':actions'
35
include ':app'
46
include ':common'
@@ -44,7 +46,5 @@ include ':build-tools:xml-utils'
4446
include ':editor'
4547
include ':preferences'
4648
include ':resources'
47-
include ':xml-inflater'
48-
include ':annotation-processors'
49-
include ':annotations'
5049
include ':uidesigner'
50+
include ':xml-inflater'
0 Bytes
Binary file not shown.

uidesigner/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ dependencies {
4242

4343
implementation project(path: ':common')
4444
implementation project(path: ':logger')
45+
implementation project(path: ':resources')
4546
implementation project(path: ':xml-inflater')
4647

4748
testImplementation tests.junit

0 commit comments

Comments
 (0)