Metadata-Version: 2.1
Name: mobile-aat-setup
Version: 0.0.1
Summary: A project that helps setting up the mobile AAT
Home-page: https://github.com/hgzech/mobile_aat_setup
Author: hgzech
Author-email: hilmarzech@gmail.com
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# mobile AAT setup
> This module helps change the application id of the mobile AAT


```
#| hide
from mobile_aat_setup.change_id import *
```

## How to use?
### Change package name
The function below replaces the middle part of the Android Project's package ID (the default is hilmarzech in com.hilmarzech.mobileaat). Replacing this middle part should be sufficient to avoid conflicts with existing installations and to upload your own version of the app to the playstore.

```
PATH_TO_THE_ANDROID_STUDIO_PROJECT = "example/path"
NEWNAME = "examplename"
change_package_name(PATH_TO_THE_ANDROID_STUDIO_PROJECT, NEWNAME)
```

### Link to Firebase
After changing the package name, add an Android App with the new package name (e.g. "com.examplename.mobileaat") to Firebase. Next download the google-services.json and place it into mobileaat/app.
