Add initial project structure and documentation files
- Created .gitignore to exclude sensitive files and directories. - Added API documentation in API_DOCUMENTATION.md. - Included deployment instructions in DEPLOYMENT.md. - Established project structure documentation in PROJECT_STRUCTURE.md. - Updated README.md with project status and team information. - Added recommendations and status tracking documents. - Introduced testing guidelines in TESTING.md. - Set up CI workflow in .github/workflows/ci.yml. - Created Dockerfile for backend and frontend setups. - Added various service and utility files for backend functionality. - Implemented frontend components and pages for user interface. - Included mobile app structure and services. - Established scripts for deployment across multiple chains.
This commit is contained in:
25
mobile/app.json
Normal file
25
mobile/app.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "ASLE",
|
||||
"displayName": "ASLE - Liquidity Engine",
|
||||
"version": "1.0.0",
|
||||
"description": "Hybrid Cross-Chain Liquidity Infrastructure",
|
||||
"ios": {
|
||||
"bundleIdentifier": "com.asle.mobile",
|
||||
"supportsTablet": true,
|
||||
"infoPlist": {
|
||||
"NSFaceIDUsageDescription": "Use Face ID to authenticate",
|
||||
"NSLocationWhenInUseUsageDescription": "Location access is not required"
|
||||
}
|
||||
},
|
||||
"android": {
|
||||
"package": "com.asle.mobile",
|
||||
"versionCode": 1,
|
||||
"permissions": [
|
||||
"android.permission.USE_BIOMETRIC",
|
||||
"android.permission.USE_FINGERPRINT",
|
||||
"android.permission.INTERNET",
|
||||
"android.permission.ACCESS_NETWORK_STATE"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user