@pi-r/android 0.8.2 → 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +6 -6
- package/README.md +6 -6
- package/data/google-maven-snapshot.json +1 -1
- package/data/google-maven.json +1 -1
- package/extensions/gradle/dependencies/index.js +2 -2
- package/index.d.ts +6 -6
- package/package.json +6 -3
- package/project/${app}/${src}/res/drawable/ic_launcher_background.xml +170 -170
- package/project/${app}/${src}/res/drawable/ic_launcher_foreground.xml +29 -29
- package/project/${app}/${src}/res/mipmap-anydpi-v26/ic_launcher.xml +5 -5
- package/project/${app}/${src}/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -5
- package/project/gradle/wrapper/gradle-wrapper.properties +4 -4
- package/project/gradle.properties +3 -3
- package/template/AndroidManifest.xml +24 -24
- package/template/java/settings.gradle +17 -17
- package/template/java/static/build.gradle +3 -3
- package/template/java+kotlin/settings.gradle +17 -17
- package/template/java+kotlin/static/build.gradle +4 -4
- package/template/kotlin/libs.versions.toml +23 -23
- package/template/kotlin/settings.gradle.kts +23 -23
- package/template/kotlin/static/build.gradle.kts +4 -4
- package/types/index.d.ts +79 -79
- package/types/squared.d.ts +89 -89
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
[versions]
|
|
2
|
-
agp = "8.
|
|
3
|
-
kotlin = "2.0.
|
|
4
|
-
coreKtx = "1.13.1"
|
|
5
|
-
junit = "4.13.2"
|
|
6
|
-
junitVersion = "1.2.1"
|
|
7
|
-
espressoCore = "3.6.1"
|
|
8
|
-
appcompat = "1.7.0"
|
|
9
|
-
constraintlayout = "2.1.4"
|
|
10
|
-
|
|
11
|
-
[libraries]
|
|
12
|
-
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
13
|
-
jetbrains-kotlin = { group = "org.jetbrains.kotlin", name = "kotlin-stdlib", version.ref = "kotlin" }
|
|
14
|
-
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
15
|
-
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
|
|
16
|
-
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
|
17
|
-
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
|
|
18
|
-
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
|
|
19
|
-
|
|
20
|
-
[plugins]
|
|
21
|
-
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
22
|
-
jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
23
|
-
jetbrains-kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
|
1
|
+
[versions]
|
|
2
|
+
agp = "8.7.0"
|
|
3
|
+
kotlin = "2.0.21"
|
|
4
|
+
coreKtx = "1.13.1"
|
|
5
|
+
junit = "4.13.2"
|
|
6
|
+
junitVersion = "1.2.1"
|
|
7
|
+
espressoCore = "3.6.1"
|
|
8
|
+
appcompat = "1.7.0"
|
|
9
|
+
constraintlayout = "2.1.4"
|
|
10
|
+
|
|
11
|
+
[libraries]
|
|
12
|
+
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
13
|
+
jetbrains-kotlin = { group = "org.jetbrains.kotlin", name = "kotlin-stdlib", version.ref = "kotlin" }
|
|
14
|
+
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
15
|
+
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
|
|
16
|
+
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
|
17
|
+
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
|
|
18
|
+
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
|
|
19
|
+
|
|
20
|
+
[plugins]
|
|
21
|
+
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
22
|
+
jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
23
|
+
jetbrains-kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
val snapshotVersion : String? = System.getenv("ANDROIDX_SNAPSHOT_ID")
|
|
2
|
-
|
|
3
|
-
pluginManagement {
|
|
4
|
-
repositories {
|
|
5
|
-
google()
|
|
6
|
-
mavenCentral()
|
|
7
|
-
gradlePluginPortal()
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
dependencyResolutionManagement {
|
|
12
|
-
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
13
|
-
repositories {
|
|
14
|
-
snapshotVersion?.let {
|
|
15
|
-
println("https://androidx.dev/snapshots/builds/$it/artifacts/repository/")
|
|
16
|
-
maven { url = uri("https://androidx.dev/snapshots/builds/$it/artifacts/repository/") }
|
|
17
|
-
}
|
|
18
|
-
google()
|
|
19
|
-
mavenCentral()
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
rootProject.name = "{{projectName}}"
|
|
1
|
+
val snapshotVersion : String? = System.getenv("ANDROIDX_SNAPSHOT_ID")
|
|
2
|
+
|
|
3
|
+
pluginManagement {
|
|
4
|
+
repositories {
|
|
5
|
+
google()
|
|
6
|
+
mavenCentral()
|
|
7
|
+
gradlePluginPortal()
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
dependencyResolutionManagement {
|
|
12
|
+
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
13
|
+
repositories {
|
|
14
|
+
snapshotVersion?.let {
|
|
15
|
+
println("https://androidx.dev/snapshots/builds/$it/artifacts/repository/")
|
|
16
|
+
maven { url = uri("https://androidx.dev/snapshots/builds/$it/artifacts/repository/") }
|
|
17
|
+
}
|
|
18
|
+
google()
|
|
19
|
+
mavenCentral()
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
rootProject.name = "{{projectName}}"
|
|
24
24
|
include("{{name}}")
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
plugins {
|
|
2
|
-
alias(libs.plugins.android.application) apply false
|
|
3
|
-
alias(libs.plugins.jetbrains.kotlin.android) apply false
|
|
4
|
-
alias(libs.plugins.jetbrains.kotlin.compose) apply false
|
|
1
|
+
plugins {
|
|
2
|
+
alias(libs.plugins.android.application) apply false
|
|
3
|
+
alias(libs.plugins.jetbrains.kotlin.android) apply false
|
|
4
|
+
alias(libs.plugins.jetbrains.kotlin.compose) apply false
|
|
5
5
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
import type { DocumentConstructor, IDocument, IFileManager } from '@e-mc/types/lib';
|
|
2
|
-
import type { ExternalAsset } from '@e-mc/types/lib/asset';
|
|
3
|
-
import type { ExecAction, DocumentDirectory as IDocumentDirectory, DocumentModule as IDocumentModule, DocumentSettings as IDocumentSettings } from '@e-mc/types/lib/settings';
|
|
4
|
-
|
|
5
|
-
import type { DependencyScopes, DocumentOutput, FinalizedElement } from './squared';
|
|
6
|
-
|
|
7
|
-
interface DocumentDirectory extends IDocumentDirectory {
|
|
8
|
-
template?: string;
|
|
9
|
-
project?: string;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
interface AndroidDocumentSettings extends Pick<IDocumentSettings, "users" | "directory">, PlainObject {
|
|
13
|
-
extensions?: {
|
|
14
|
-
task?: {
|
|
15
|
-
exec?: ExecAction;
|
|
16
|
-
command?: string;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
language?: {
|
|
20
|
-
[T in LanguageOfType]?: LanguageType;
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
type DocumentProperties = "targetAPI" | "elements" | "extensionData" | "directories";
|
|
25
|
-
|
|
26
|
-
export interface UserConfig extends Omit<DocumentOutput, DocumentProperties> {
|
|
27
|
-
mainParentDir: string;
|
|
28
|
-
mainSrcDir: string;
|
|
29
|
-
mainActivityFile: string;
|
|
30
|
-
javaVersion: number;
|
|
31
|
-
dataBinding: boolean;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export interface DocumentModule extends IDocumentModule {
|
|
35
|
-
settings?: AndroidDocumentSettings;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export interface TemplateData {
|
|
39
|
-
localUri?: string;
|
|
40
|
-
source?: string;
|
|
41
|
-
existing?: boolean;
|
|
42
|
-
kotlin?: boolean;
|
|
43
|
-
language?: LanguageType;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export interface FindTemplateOptions {
|
|
47
|
-
detect?: boolean;
|
|
48
|
-
languageOf?: LanguageOfType;
|
|
49
|
-
subDir?: ArrayOf<string>;
|
|
50
|
-
throwsDoesNotExist?: boolean;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
export interface MavenArtifact {
|
|
54
|
-
groupId: string;
|
|
55
|
-
artifactId: string;
|
|
56
|
-
version: string;
|
|
57
|
-
scope?: DependencyScopes;
|
|
58
|
-
dependencies?: MavenArtifact[];
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export type LanguageType = "java" | "kotlin" | "java+kotlin";
|
|
62
|
-
export type LanguageOfType = "gradle";
|
|
63
|
-
export type DocumentAsset = ExternalAsset;
|
|
64
|
-
|
|
65
|
-
export interface IAndroidDocument<T extends IFileManager<U>, U extends DocumentAsset = DocumentAsset> extends IDocument<T, U, DocumentModule>, Pick<DocumentOutput, DocumentProperties> {
|
|
66
|
-
config: UserConfig;
|
|
67
|
-
elements: FinalizedElement[];
|
|
68
|
-
extensionData: PlainObject;
|
|
69
|
-
findTemplate(baseDir: string, filename: string, options?: FindTemplateOptions): TemplateData;
|
|
70
|
-
findData<V = AnyObject>(filename: string, format?: string): Null<V>;
|
|
71
|
-
languageOf(name: LanguageOfType, value?: LanguageType): Undef<LanguageType>;
|
|
72
|
-
detectKts(...paths: string[]): Null<boolean>;
|
|
73
|
-
detect(host?: T): boolean;
|
|
74
|
-
get settings(): AndroidDocumentSettings;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export interface AndroidDocumentConstructor<T extends IFileManager<U>, U extends DocumentAsset = DocumentAsset> extends ConstructorDerived<DocumentConstructor<T, U>> {
|
|
78
|
-
readonly prototype: IAndroidDocument<T, U>;
|
|
79
|
-
new(module?: DocumentModule, ...args: unknown[]): IAndroidDocument<T, U>;
|
|
1
|
+
import type { DocumentConstructor, IDocument, IFileManager } from '@e-mc/types/lib';
|
|
2
|
+
import type { ExternalAsset } from '@e-mc/types/lib/asset';
|
|
3
|
+
import type { ExecAction, DocumentDirectory as IDocumentDirectory, DocumentModule as IDocumentModule, DocumentSettings as IDocumentSettings } from '@e-mc/types/lib/settings';
|
|
4
|
+
|
|
5
|
+
import type { DependencyScopes, DocumentOutput, FinalizedElement } from './squared';
|
|
6
|
+
|
|
7
|
+
interface DocumentDirectory extends IDocumentDirectory {
|
|
8
|
+
template?: string;
|
|
9
|
+
project?: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface AndroidDocumentSettings extends Pick<IDocumentSettings, "users" | "directory">, PlainObject {
|
|
13
|
+
extensions?: {
|
|
14
|
+
task?: {
|
|
15
|
+
exec?: ExecAction;
|
|
16
|
+
command?: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
language?: {
|
|
20
|
+
[T in LanguageOfType]?: LanguageType;
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
type DocumentProperties = "targetAPI" | "elements" | "extensionData" | "directories";
|
|
25
|
+
|
|
26
|
+
export interface UserConfig extends Omit<DocumentOutput, DocumentProperties> {
|
|
27
|
+
mainParentDir: string;
|
|
28
|
+
mainSrcDir: string;
|
|
29
|
+
mainActivityFile: string;
|
|
30
|
+
javaVersion: number;
|
|
31
|
+
dataBinding: boolean;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface DocumentModule extends IDocumentModule {
|
|
35
|
+
settings?: AndroidDocumentSettings;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface TemplateData {
|
|
39
|
+
localUri?: string;
|
|
40
|
+
source?: string;
|
|
41
|
+
existing?: boolean;
|
|
42
|
+
kotlin?: boolean;
|
|
43
|
+
language?: LanguageType;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export interface FindTemplateOptions {
|
|
47
|
+
detect?: boolean;
|
|
48
|
+
languageOf?: LanguageOfType;
|
|
49
|
+
subDir?: ArrayOf<string>;
|
|
50
|
+
throwsDoesNotExist?: boolean;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export interface MavenArtifact {
|
|
54
|
+
groupId: string;
|
|
55
|
+
artifactId: string;
|
|
56
|
+
version: string;
|
|
57
|
+
scope?: DependencyScopes;
|
|
58
|
+
dependencies?: MavenArtifact[];
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export type LanguageType = "java" | "kotlin" | "java+kotlin";
|
|
62
|
+
export type LanguageOfType = "gradle";
|
|
63
|
+
export type DocumentAsset = ExternalAsset;
|
|
64
|
+
|
|
65
|
+
export interface IAndroidDocument<T extends IFileManager<U>, U extends DocumentAsset = DocumentAsset> extends IDocument<T, U, DocumentModule>, Pick<DocumentOutput, DocumentProperties> {
|
|
66
|
+
config: UserConfig;
|
|
67
|
+
elements: FinalizedElement[];
|
|
68
|
+
extensionData: PlainObject;
|
|
69
|
+
findTemplate(baseDir: string, filename: string, options?: FindTemplateOptions): TemplateData;
|
|
70
|
+
findData<V = AnyObject>(filename: string, format?: string): Null<V>;
|
|
71
|
+
languageOf(name: LanguageOfType, value?: LanguageType): Undef<LanguageType>;
|
|
72
|
+
detectKts(...paths: string[]): Null<boolean>;
|
|
73
|
+
detect(host?: T): boolean;
|
|
74
|
+
get settings(): AndroidDocumentSettings;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface AndroidDocumentConstructor<T extends IFileManager<U>, U extends DocumentAsset = DocumentAsset> extends ConstructorDerived<DocumentConstructor<T, U>> {
|
|
78
|
+
readonly prototype: IAndroidDocument<T, U>;
|
|
79
|
+
new(module?: DocumentModule, ...args: unknown[]): IAndroidDocument<T, U>;
|
|
80
80
|
}
|
package/types/squared.d.ts
CHANGED
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
import type { RequestData as IRequestData } from '@e-mc/types/lib/node';
|
|
2
|
-
|
|
3
|
-
interface BoxRect<T = number> {
|
|
4
|
-
top: T;
|
|
5
|
-
right: T;
|
|
6
|
-
bottom: T;
|
|
7
|
-
left: T;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
interface BoxRectDimension extends BoxRect, Dimension {
|
|
11
|
-
numberOfLines?: number;
|
|
12
|
-
overflow?: boolean;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface FinalizedElement {
|
|
16
|
-
documentId: string;
|
|
17
|
-
bounds: BoxRectDimension;
|
|
18
|
-
css: PlainObject;
|
|
19
|
-
outerWrapperIds?: string[];
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export interface ConditionProperty {
|
|
23
|
-
conditionText: string;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export interface CssConditionData extends ConditionProperty {
|
|
27
|
-
name?: string;
|
|
28
|
-
conditionText: string;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export interface DocumentOutput {
|
|
32
|
-
targetAPI?: number | string;
|
|
33
|
-
manifest?: ManifestData;
|
|
34
|
-
namespace?: string;
|
|
35
|
-
applicationId?: string;
|
|
36
|
-
profileable?: boolean | ArrayOf<string>;
|
|
37
|
-
dependencies?: string[];
|
|
38
|
-
dependencyScopes?: boolean | 1 | ArrayOf<DependencyScopes | "snapshot" | "constraints">;
|
|
39
|
-
directories?: ControllerSettingsDirectoryUI;
|
|
40
|
-
elements?: FinalizedElement[];
|
|
41
|
-
projectName?: string;
|
|
42
|
-
mainParentDir?: string;
|
|
43
|
-
mainSrcDir?: string;
|
|
44
|
-
mainActivityFile?: string;
|
|
45
|
-
javaVersion?: number | string;
|
|
46
|
-
jvmToolchain?: number | string;
|
|
47
|
-
versionCatalog?: boolean;
|
|
48
|
-
versionName?: string;
|
|
49
|
-
versionCode?: number;
|
|
50
|
-
dataBinding?: boolean;
|
|
51
|
-
commands?: ArrayOf<ArrayOf<string>>;
|
|
52
|
-
extensionData?: PlainObject;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export interface RequestData extends IRequestData, DocumentOutput {}
|
|
56
|
-
|
|
57
|
-
export interface ManifestData extends PlainObject {
|
|
58
|
-
package?: string;
|
|
59
|
-
application?: {
|
|
60
|
-
supportsRtl?: boolean;
|
|
61
|
-
label?: string;
|
|
62
|
-
theme?: string;
|
|
63
|
-
metaData?: { name?: string; resource?: string; value?: string }[];
|
|
64
|
-
activity?: ObjectMap<{
|
|
65
|
-
layout?: {
|
|
66
|
-
defaultWidth?: string;
|
|
67
|
-
defaultHeight?: string;
|
|
68
|
-
minWidth?: string;
|
|
69
|
-
minHeight?: string;
|
|
70
|
-
gravity?: string;
|
|
71
|
-
};
|
|
72
|
-
}>;
|
|
73
|
-
activityName?: string;
|
|
74
|
-
fontProvider?: string;
|
|
75
|
-
};
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
export interface ControllerSettingsDirectoryUI {
|
|
79
|
-
layout: string;
|
|
80
|
-
string: string;
|
|
81
|
-
font: string;
|
|
82
|
-
image: string;
|
|
83
|
-
video: string;
|
|
84
|
-
audio: string;
|
|
85
|
-
main: string;
|
|
86
|
-
animation: string;
|
|
87
|
-
theme: string;
|
|
88
|
-
}
|
|
89
|
-
|
|
1
|
+
import type { RequestData as IRequestData } from '@e-mc/types/lib/node';
|
|
2
|
+
|
|
3
|
+
interface BoxRect<T = number> {
|
|
4
|
+
top: T;
|
|
5
|
+
right: T;
|
|
6
|
+
bottom: T;
|
|
7
|
+
left: T;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
interface BoxRectDimension extends BoxRect, Dimension {
|
|
11
|
+
numberOfLines?: number;
|
|
12
|
+
overflow?: boolean;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface FinalizedElement {
|
|
16
|
+
documentId: string;
|
|
17
|
+
bounds: BoxRectDimension;
|
|
18
|
+
css: PlainObject;
|
|
19
|
+
outerWrapperIds?: string[];
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface ConditionProperty {
|
|
23
|
+
conditionText: string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface CssConditionData extends ConditionProperty {
|
|
27
|
+
name?: string;
|
|
28
|
+
conditionText: string;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export interface DocumentOutput {
|
|
32
|
+
targetAPI?: number | string;
|
|
33
|
+
manifest?: ManifestData;
|
|
34
|
+
namespace?: string;
|
|
35
|
+
applicationId?: string;
|
|
36
|
+
profileable?: boolean | ArrayOf<string>;
|
|
37
|
+
dependencies?: string[];
|
|
38
|
+
dependencyScopes?: boolean | 1 | ArrayOf<DependencyScopes | "snapshot" | "constraints">;
|
|
39
|
+
directories?: ControllerSettingsDirectoryUI;
|
|
40
|
+
elements?: FinalizedElement[];
|
|
41
|
+
projectName?: string;
|
|
42
|
+
mainParentDir?: string;
|
|
43
|
+
mainSrcDir?: string;
|
|
44
|
+
mainActivityFile?: string;
|
|
45
|
+
javaVersion?: number | string;
|
|
46
|
+
jvmToolchain?: number | string;
|
|
47
|
+
versionCatalog?: boolean;
|
|
48
|
+
versionName?: string;
|
|
49
|
+
versionCode?: number;
|
|
50
|
+
dataBinding?: boolean;
|
|
51
|
+
commands?: ArrayOf<ArrayOf<string>>;
|
|
52
|
+
extensionData?: PlainObject;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export interface RequestData extends IRequestData, DocumentOutput {}
|
|
56
|
+
|
|
57
|
+
export interface ManifestData extends PlainObject {
|
|
58
|
+
package?: string;
|
|
59
|
+
application?: {
|
|
60
|
+
supportsRtl?: boolean;
|
|
61
|
+
label?: string;
|
|
62
|
+
theme?: string;
|
|
63
|
+
metaData?: { name?: string; resource?: string; value?: string }[];
|
|
64
|
+
activity?: ObjectMap<{
|
|
65
|
+
layout?: {
|
|
66
|
+
defaultWidth?: string;
|
|
67
|
+
defaultHeight?: string;
|
|
68
|
+
minWidth?: string;
|
|
69
|
+
minHeight?: string;
|
|
70
|
+
gravity?: string;
|
|
71
|
+
};
|
|
72
|
+
}>;
|
|
73
|
+
activityName?: string;
|
|
74
|
+
fontProvider?: string;
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export interface ControllerSettingsDirectoryUI {
|
|
79
|
+
layout: string;
|
|
80
|
+
string: string;
|
|
81
|
+
font: string;
|
|
82
|
+
image: string;
|
|
83
|
+
video: string;
|
|
84
|
+
audio: string;
|
|
85
|
+
main: string;
|
|
86
|
+
animation: string;
|
|
87
|
+
theme: string;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
90
|
export type DependencyScopes = "compile" | "provided" | "runtime" | "test";
|