forked from BaronKiko/LauncherHijack
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
4th Commit : About and Help pages added and some minor tweaks.
- Loading branch information
Showing
16 changed files
with
588 additions
and
375 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
![Logo](AppIcon/TrimmedLogo128.png "Launcher Hijack Logo") | ||
# LauncherHijack V4 (For Firestick 4K) | ||
A small Android application to circumvent the default Amazon Fire launcher. Works for Fire Tablets and Fire TV's. | ||
Huge thanks to ParrotGeek1, BaronKiko, Speeddymon and Urbanman2004. | ||
Huge thanks to ParrotGeek1, BaronKiko, Speeddymon, wilkovatch, and Urbanman2004. | ||
|
||
# Important | ||
Please read the instructions for your device in [HELP.md](https://github.com/sweenwolf/LauncherHijack/blob/master/HELP.md) | ||
Please read the instructions for your device before installing in [HELP.md](https://github.com/sweenwolf/LauncherHijack/blob/master/HELP.md) | ||
|
||
# Downloads | ||
[Launcher Hijack (4K.0.3)](https://github.com/sweenwolf/LauncherHijack/releases/tag/4K.0.3) |
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
package com.baronkiko.launcherhijack; | ||
|
||
import android.content.Intent; | ||
import android.net.Uri; | ||
import android.os.Bundle; | ||
import android.support.v7.app.AppCompatActivity; | ||
import android.view.View; | ||
import android.widget.Button; | ||
|
||
public class About extends AppCompatActivity { | ||
|
||
Button BaronKiko, ParrotGeek1, Speeddymon, Urbanman2004, wilkovatch, wolf; | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_about); | ||
getSupportActionBar().hide(); | ||
|
||
BaronKiko = findViewById(R.id.dev1); | ||
ParrotGeek1 = findViewById(R.id.dev2); | ||
Speeddymon = findViewById(R.id.dev3); | ||
Urbanman2004 = findViewById(R.id.dev4); | ||
wilkovatch = findViewById(R.id.dev5); | ||
wolf = findViewById(R.id.dev6); | ||
|
||
BaronKiko.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/BaronKiko/LauncherHijack"))); | ||
} | ||
}); | ||
|
||
ParrotGeek1.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/parrotgeek1/LauncherHijack"))); | ||
} | ||
}); | ||
|
||
Speeddymon.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/Speeddymon/LauncherHijack"))); | ||
} | ||
}); | ||
Urbanman2004.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/urbanman2004"))); | ||
} | ||
}); | ||
wilkovatch.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/wilkovatch/LauncherHijack"))); | ||
} | ||
}); | ||
wolf.setOnClickListener(new View.OnClickListener() { | ||
@Override | ||
public void onClick(View v) { | ||
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/sweenwolf/LauncherHijack"))); | ||
} | ||
}); | ||
|
||
} | ||
} |
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
Oops, something went wrong.