-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add testcase for feature flags (api 35) (#3774)
- Loading branch information
1 parent
4b2c9ab
commit 8886275
Showing
5 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
brut.apktool/apktool-lib/src/test/resources/aapt2/testapp/smali/MainActivity.smali
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.class public LMainActivity; | ||
.super Landroid/app/Activity; | ||
|
||
.method protected onCreate(Landroid/os/Bundle;)V | ||
.locals 2 | ||
|
||
.prologue | ||
const/4 v0, 0x1 | ||
|
||
.line 8 | ||
invoke-super {p0, p1}, Landroid/app/Activity;->onCreate(Landroid/os/Bundle;)V | ||
|
||
.line 10 | ||
new-instance v1, Landroid/widget/TextView; | ||
|
||
invoke-direct {v1, p0}, Landroid/widget/TextView;-><init>(Landroid/content/Context;)V | ||
|
||
.line 11 | ||
const-string v0, "Hello, World!" | ||
|
||
invoke-virtual {v1, v0}, Landroid/widget/TextView;->setText(Ljava/lang/CharSequence;)V | ||
|
||
.line 12 | ||
invoke-virtual {p0, v1}, Landroid/app/Activity;->setContentView(Landroid/view/View;)V | ||
|
||
.line 13 | ||
return-void | ||
.end method |