mirror of
https://github.com/nix-packages/nixapks.git
synced 2025-11-08 19:46:11 +01:00
update documentation
This commit is contained in:
parent
77f2bb76d9
commit
886e226db5
6 changed files with 40 additions and 2 deletions
14
docs/src/SUMMARY.md
Normal file
14
docs/src/SUMMARY.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Summary
|
||||
|
||||
[Introduction](README.md)
|
||||
|
||||
# Nixapks Guide
|
||||
|
||||
- [Building an App](building-an-app.md)
|
||||
- [Analyzing an APK File](analyzing-an-apk-file.md)
|
||||
- [Adding a New App](adding-a-new-app.md)
|
||||
- [Updating an App](updating-an-app.md)
|
||||
<!--
|
||||
# Android Development with Nix
|
||||
|
||||
- [Frameworks and Tools](android-frameworks-and-tools.md) -->
|
||||
0
docs/src/adding-new-app.md
Normal file
0
docs/src/adding-new-app.md
Normal file
15
docs/src/analyzing-an-apk-file.md
Normal file
15
docs/src/analyzing-an-apk-file.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
|
||||
# Analyzing an APK File
|
||||
|
||||
First build the app
|
||||
|
||||
```sh
|
||||
nix build .#mihon
|
||||
```
|
||||
|
||||
Then use `apktool` to decode the APK file
|
||||
|
||||
```sh
|
||||
nix run nixpkgs#apktool -- d result
|
||||
```
|
||||
9
docs/src/building-an-app.md
Normal file
9
docs/src/building-an-app.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
# Building an App
|
||||
|
||||
Building an app is as easy as:
|
||||
|
||||
```sh
|
||||
nix build .#app-name
|
||||
```
|
||||
0
docs/src/updating-an-app.md
Normal file
0
docs/src/updating-an-app.md
Normal file
Loading…
Add table
Add a link
Reference in a new issue