An Notice Board App for Students To Stay Connected With The College Updates..!
Notices on a digital platform are quick and easy to access, reduce a lot of paper waste, and one can get notified about the updates and news.
Note : Removed app.json which is a expo file u need to create a file like app.json in root with following code
app.json
{
"expo": {
"name": "DN",
"slug": "noticeboardapp",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/logo.png",
"resizeMode": "contain",
"backgroundColor": "#801212"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "your andriod app identifier"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#801212"
},
"package": "your andriod app identifier"
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "your expo project id"
}
},
"plugins": [
"sentry-expo",
["onesignal-expo-plugin",{
"mode": "development"
}]
],
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "badineni-sai-vardhan",
"project": "your project nane",
"authToken": "your auth token"
}
}
]
}
}
}