File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 26
26
uses : ncipollo/release-action@v1
27
27
with :
28
28
artifacts : " build/app/outputs/apk/release/*"
29
- tag : v1.0.6
29
+ tag : v1.0.6.1
30
30
token : ${{ secrets.TOKEN }}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class MeditationRemoteDataSourceImpl implements MeditaionRemoteDataSource {
17
17
Future <DailyQuoteModel > getDailyQuote () async {
18
18
final response = await client
19
19
// .get(Uri.parse('http://10.0.3.218:6000/meditation/dailyQuotes'));
20
- .get (Uri .parse ('https://mindful-app-47s6.onrender.com:10000 /meditation/dailyQuotes' ));
20
+ .get (Uri .parse ('https://mindful-app-47s6.onrender.com/meditation/dailyQuotes' ));
21
21
// await client.get(Uri.parse('http://192.168.29.6:6000/songs/all')); for android real device
22
22
// await client.get(Uri.parse('http;//10.0.2.2:6000/songs/all')); for avd
23
23
if (response.statusCode == 200 ) {
@@ -38,7 +38,7 @@ class MeditationRemoteDataSourceImpl implements MeditaionRemoteDataSource {
38
38
Future <MoodMessageModel > getMoodMessage (String mood) async {
39
39
final response = await client
40
40
// .get(Uri.parse('http://10.0.3.218:6000/meditation/myMood/$mood'));
41
- .get (Uri .parse ('https://mindful-app-47s6.onrender.com:10000 /meditation/myMood/$mood ' ));
41
+ .get (Uri .parse ('https://mindful-app-47s6.onrender.com/meditation/myMood/$mood ' ));
42
42
// await client.get(Uri.parse('http://192.168.29.6:6000/songs/all')); for android real device
43
43
// await client.get(Uri.parse('http;//10.0.2.2:6000/songs/all')); for avd
44
44
if (response.statusCode == 200 ) {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class SongRemoteDataSourceImpl implements SongRemoteDataSource {
18
18
Future <List <Song >> getAllSongs () async {
19
19
final response =
20
20
// await client.get(Uri.parse('http://10.0.3.218:6000/songs/all'));
21
- await client.get (Uri .parse ('https://mindful-app-47s6.onrender.com:10000 /songs/all' ));
21
+ await client.get (Uri .parse ('https://mindful-app-47s6.onrender.com/songs/all' ));
22
22
// await client.get(Uri.parse('http://192.168.29.6:6000/songs/all')); for android real device
23
23
// await client.get(Uri.parse('http;//10.0.2.2:6000/songs/all')); for avd
24
24
if (response.statusCode == 200 ) {
You can’t perform that action at this time.
0 commit comments