feat: add initial configuration and resources for nep9 module
- Introduced build.gradle for the nep9 module with application ID and Firebase configuration. - Added AndroidManifest.xml with necessary permissions and application setup. - Implemented Firebase messaging service for push notifications. - Included drawable and mipmap resources for app branding. - Created .gitignore to exclude build and release directories. - Added proguard rules for code obfuscation and optimization. - Established network security configuration and file provider paths.
This commit is contained in:
9
nep9/src/main/res/drawable/big_bg.xml
Normal file
9
nep9/src/main/res/drawable/big_bg.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:startColor="@color/windows_color"
|
||||
android:centerColor="@color/windows_color"
|
||||
android:endColor="@color/style_color"/>
|
||||
</shape>
|
||||
Reference in New Issue
Block a user