Skip to content

Commit

Permalink
fix: broken iOS data source
Browse files Browse the repository at this point in the history
chore: update dependencies
  • Loading branch information
Boehrsi committed Feb 25, 2024
1 parent 36ec528 commit d39eb4a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ A Dart script which fetches Android and iOS device information. Generates direct

## Sources

- **iOS**: https://github.com/SeparateRecords/apple_device_identifiers
- **iOS**: https://github.com/clo4/apple_device_identifiers
- **Android**: https://storage.googleapis.com/play_public/supported_devices.html (via https://support.google.com/googleplay/answer/1727131?hl=en)

## Used in
Expand Down
4 changes: 2 additions & 2 deletions lib/ios.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import 'dart:convert';
import 'package:http/http.dart' as http;

final iPhoneJson =
'https://raw.githubusercontent.com/SeparateRecords/apple_device_identifiers/main/devices/iPhone.json';
'https://raw.githubusercontent.com/clo4/apple_device_identifiers/main/devices/iPhone.json';
final iPadJson =
'https://raw.githubusercontent.com/SeparateRecords/apple_device_identifiers/main/devices/iPad.json';
'https://raw.githubusercontent.com/clo4/apple_device_identifiers/main/devices/iPad.json';

Future<Map> requestIosIdentifiers(String target) async {
final resultMap = {};
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: device_identifiers
version: 0.5.0
version: 0.6.0

environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
http: ^1.0.0
csv: ^5.0.1
http: ^1.2.1
csv: ^5.1.1

dev_dependencies:
test: ^1.21.6
test: ^1.25.2

0 comments on commit d39eb4a

Please sign in to comment.