Skip to content

Commit

Permalink
rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin committed Sep 23, 2020
1 parent 14d9b53 commit efe018f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ShoppingListApp
# Shoppinglist App

Mobile application to manage your shopping lists, written with Ionic, Cordova and TypeScript.
Manage your shopping lists and share them with your family and flatmates.
Expand All @@ -16,7 +16,7 @@ Manage your shopping lists and share them with your family and flatmates.
Download repository

```bash
git clone https://git.narrenhaus.ch/Narrenhaus/ShoppingListApp.git
git clone https://github.com/ammannbe/ShoppinglistApp.git
```

### Prerequisites
Expand Down Expand Up @@ -56,13 +56,13 @@ ionic cordova build android --prod --release
- Rename APK

```bash
mv ./platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk ./platforms/android/app/build/outputs/apk/release/ShoppingList-release-unsigned.apk
mv ./platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk ./platforms/android/app/build/outputs/apk/release/Shoppinglist-release-unsigned.apk
```

- Sign APK

```bash
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore ShoppingList-release-key.keystore ./platforms/android/app/build/outputs/apk/release/ShoppingList-release-unsigned.apk alias_name
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore Shoppinglist-release-key.keystore ./platforms/android/app/build/outputs/apk/release/Shoppinglist-release-unsigned.apk alias_name
```

- Optimize APK with the `zipalign`-utility
Expand All @@ -71,7 +71,7 @@ Existiert im Ordner `$HOME/Android/Sdk/build-tools/[VERSION]/zipalign`

```bash
$version="28.0.3"
$HOME/Android/Sdk/build-tools/$version/zipalign -v 4 platforms/android/app/build/outputs/apk/release/ShoppingList-release-unsigned.apk platforms/android/app/build/outputs/apk/release/ShoppingList.apk
$HOME/Android/Sdk/build-tools/$version/zipalign -v 4 platforms/android/app/build/outputs/apk/release/Shoppinglist-release-unsigned.apk platforms/android/app/build/outputs/apk/release/Shoppinglist.apk
```

## Deploy on Apples App Store
Expand All @@ -91,7 +91,7 @@ open platforms/ios/Todo\ Liste.xcodeproj

- Change emulator to "Generic iOS Device"
- Check Identity:
- Name: ShoppingList
- Name: Shoppinglist
- Bundle ID: (not ready yet)
- Version & Build according to config.xml
- Go to Product > Archive (if the build failes, check the settings)
Expand Down
2 changes: 1 addition & 1 deletion build-apk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Here are the APK releases
release_dir="platforms/android/app/build/outputs/apk/release"
app_name="ShoppingList"
app_name="Shoppinglist"

# Default build tool version
sdk_version="28.0.3"
Expand Down
2 changes: 1 addition & 1 deletion ionic.config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ShoppingListApp",
"name": "Shoppinglist",
"integrations": {
"cordova": {}
},
Expand Down

0 comments on commit efe018f

Please sign in to comment.