Skip to content

Commit 9f4329b

Browse files
committed
Production Ready
1 parent 5d7ce9d commit 9f4329b

File tree

5 files changed

+9
-19
lines changed

5 files changed

+9
-19
lines changed

ScholarSync_v1.apk

23.1 MB
Binary file not shown.

scholar_sync/android/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232

3333
defaultConfig {
3434
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
35-
applicationId = "com.reversant.scholarsync"
35+
applicationId = "com.kishor404.scholarsync"
3636
// You can update the following values to match your application needs.
3737
// For more information, see: https://flutter.dev/to/review-gradle-config.
3838
minSdk = flutter.minSdkVersion

scholar_sync/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@
368368
"$(inherited)",
369369
"@executable_path/Frameworks",
370370
);
371-
PRODUCT_BUNDLE_IDENTIFIER = com.reversant.scholarsync;
371+
PRODUCT_BUNDLE_IDENTIFIER = com.kishor404.scholarsync;
372372
PRODUCT_NAME = "$(TARGET_NAME)";
373373
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
374374
SWIFT_VERSION = 5.0;
@@ -384,7 +384,7 @@
384384
CURRENT_PROJECT_VERSION = 1;
385385
GENERATE_INFOPLIST_FILE = YES;
386386
MARKETING_VERSION = 1.0;
387-
PRODUCT_BUNDLE_IDENTIFIER = com.reversant.scholarsync.RunnerTests;
387+
PRODUCT_BUNDLE_IDENTIFIER = com.kishor404.scholarsync;
388388
PRODUCT_NAME = "$(TARGET_NAME)";
389389
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
390390
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -401,7 +401,7 @@
401401
CURRENT_PROJECT_VERSION = 1;
402402
GENERATE_INFOPLIST_FILE = YES;
403403
MARKETING_VERSION = 1.0;
404-
PRODUCT_BUNDLE_IDENTIFIER = com.reversant.scholarsync.RunnerTests;
404+
PRODUCT_BUNDLE_IDENTIFIER = com.kishor404.scholarsync;
405405
PRODUCT_NAME = "$(TARGET_NAME)";
406406
SWIFT_VERSION = 5.0;
407407
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
@@ -416,7 +416,7 @@
416416
CURRENT_PROJECT_VERSION = 1;
417417
GENERATE_INFOPLIST_FILE = YES;
418418
MARKETING_VERSION = 1.0;
419-
PRODUCT_BUNDLE_IDENTIFIER = com.reversant.scholarsync.RunnerTests;
419+
PRODUCT_BUNDLE_IDENTIFIER = com.kishor404.scholarsync;
420420
PRODUCT_NAME = "$(TARGET_NAME)";
421421
SWIFT_VERSION = 5.0;
422422
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
@@ -547,7 +547,7 @@
547547
"$(inherited)",
548548
"@executable_path/Frameworks",
549549
);
550-
PRODUCT_BUNDLE_IDENTIFIER = com.reversant.scholarsync;
550+
PRODUCT_BUNDLE_IDENTIFIER = com.kishor404.scholarsync;
551551
PRODUCT_NAME = "$(TARGET_NAME)";
552552
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
553553
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -569,7 +569,7 @@
569569
"$(inherited)",
570570
"@executable_path/Frameworks",
571571
);
572-
PRODUCT_BUNDLE_IDENTIFIER = com.reversant.scholarsync;
572+
PRODUCT_BUNDLE_IDENTIFIER = com.kishor404.scholarsync;
573573
PRODUCT_NAME = "$(TARGET_NAME)";
574574
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
575575
SWIFT_VERSION = 5.0;

scholar_sync/lib/views/settings_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ class SettingsScreen extends StatelessWidget {
424424
SizedBox(height: 16 * s),
425425

426426
Text(
427-
"Built by Reversant Technologies",
427+
"Built by Kishor404",
428428
style: TextStyle(
429429
fontSize: isMobile ? 11 * s : 12 * s,
430430
fontWeight: FontWeight.w500,

scholar_sync/lib/views/splash_screen.dart

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,13 @@ class SplashScreen extends GetView<SplashController> {
2020
child: Column(
2121
mainAxisSize: MainAxisSize.min,
2222
children: [
23-
// Product of text
24-
const Text(
25-
"Product Of",
26-
style: TextStyle(
27-
fontSize: 12,
28-
letterSpacing: 1.6,
29-
fontWeight: FontWeight.w500,
30-
color: Color(0xFF8A8A8A),
31-
),
32-
),
3323

3424
const SizedBox(height: 8),
3525
// Logo
3626
Transform.scale(
3727
scale: controller.scaleAnimation.value,
3828
child: Image.asset(
39-
'assets/Reversant/Logo/Reversant.png',
29+
'assets/logo.png',
4030
width: 140,
4131
height: 140,
4232
fit: BoxFit.contain,

0 commit comments

Comments
 (0)