Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1be173f
implemented sqlLight and subit locally the campaigns
GiacomoGalletti Jan 19, 2023
13a05f7
la sessione non viene letta nel thread di background
GiacomoGalletti Jan 20, 2023
49ce112
working background check campaign open
GiacomoGalletti Jan 21, 2023
c992bda
geofence system
GiacomoGalletti Jan 22, 2023
d6b77c3
fix managing services
GiacomoGalletti Jan 23, 2023
9775542
filtro sulla posizione + coin flip animazione
GiacomoGalletti Jan 24, 2023
02582e7
big refactor + geofence
GiacomoGalletti Jan 26, 2023
c860997
payment system
GiacomoGalletti Jan 29, 2023
f5a4d19
fix vaidate photo
GiacomoGalletti Jan 30, 2023
8efc116
bug fix chiusura campagne
GiacomoGalletti Jan 30, 2023
3e5e02d
fix photo sourcer visualization at close campaign
GiacomoGalletti Jan 31, 2023
6267c8b
claim campaign reward
GiacomoGalletti Feb 2, 2023
8a517ac
refactor close campaign
GiacomoGalletti Feb 2, 2023
130883b
geofence
GiacomoGalletti Feb 3, 2023
f81670d
geofence fix
GiacomoGalletti Feb 5, 2023
b0dc3dc
background service integration
GiacomoGalletti Feb 7, 2023
5f702fb
geofence notification in background service
GiacomoGalletti Feb 7, 2023
87cb76d
bug fix map iteraction
GiacomoGalletti Feb 7, 2023
d232cbf
Update sourcer_campaign_controller.dart
GiacomoGalletti Feb 7, 2023
eb7d3a0
session persistance
GiacomoGalletti Feb 7, 2023
5d40d9b
fix session recover
GiacomoGalletti Feb 9, 2023
22e5803
removed warnings
GiacomoGalletti Feb 10, 2023
bfcb04d
refactor + warnings
GiacomoGalletti Feb 11, 2023
13fd923
fixed reward
GiacomoGalletti Feb 12, 2023
d5ed421
conversion from wai to MCScoin visualization
GiacomoGalletti Feb 12, 2023
9471205
added geofence to sensing screen (ligth, photo)
GiacomoGalletti Feb 13, 2023
87e09df
fixed floating point
GiacomoGalletti Feb 13, 2023
1de6938
aggiunto logout
GiacomoGalletti Feb 14, 2023
640412c
fix minor bug logout
GiacomoGalletti Feb 16, 2023
2b2e6bc
fixed stop service, when upload worker
GiacomoGalletti Feb 16, 2023
a385e2e
validate light controller refactor
GiacomoGalletti Feb 17, 2023
a252fc1
sensor light controller
GiacomoGalletti Feb 17, 2023
4ad58e0
Update services.dart
GiacomoGalletti Feb 19, 2023
da79008
aggiornate dipendenze camera
GiacomoGalletti Feb 19, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,28 @@
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />

<!-- &lt;!&ndash; Don't delete the meta-data below.-->
<!-- This is used by the Flutter tool to generate GeneratedPluginRegistrant.java &ndash;&gt;-->
<!-- <meta-data android:name="flutterEmbedding" android:value="2" />-->
<!-- <service android:name="com.pravera.flutter_foreground_task.service.ForegroundService" />-->

<meta-data android:name="flutterEmbedding" android:value="2" />
<service
android:name="com.pravera.flutter_foreground_task.service.ForegroundService"
android:foregroundServiceType="location"
android:stopWithTask="true" />

</application>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />

<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION" />
<uses-permission android:name="android.permission.ACTIVITY_RECOGNITION" />
</manifest>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
android.enableJetifier=true
Loading