Sri
Sri

Reputation: 41

How to modify the content in android manifest file

When i changing the content in android manifest file it doesn't change . When i running my application it automatically realign the code . I want to know how to modify the android manifest file in my android can you please give me the solution for that

Upvotes: 3

Views: 1966

Answers (3)

aydr zx
aydr zx

Reputation: 1

{ "format_version": 2,

"header": {
    "description": "Splahmc server",
    "name": "Splashmc server",
    "uuid": "e5f5c938-a701-11eb-b2a3-047d7bb283ba",
    "version": [1, 0, 6],
    "min_engine_version": [ 1, 16, 0 ]
},
"modules": [
    {
        "description": "GeyserOptionalPack",
        "type": "resources",
        "uuid": "eebb4ea8-a701-11eb-95ba-047d7bb283ba",
        "version": [1, 0, 6]
    }
]

}

Upvotes: 0

Anush Shrestha
Anush Shrestha

Reputation: 318

app>>manifest>>AndoirdManifest.xml The manifest file presents essential information about your app to the Android system, information the system must have before it can run any of the app's code.

Upvotes: 4

appersiano
appersiano

Reputation: 2760

AndroidManifest is not auto-generated so you can edit and save it.

Close all current tabs e open directly the AndroidManifest again.

enter image description here

Upvotes: 1

Related Questions