codeplay-common 2.1.13 → 2.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,170 +1,170 @@
1
- const fs = require('fs');
2
- const readline = require('readline');
3
- const path = require('path');
4
-
5
- // Define the root directory of the project (adjust if needed)
6
- const projectRoot = path.join('android/app/src/main');
7
-
8
- // Animation options
9
- const animations = [
10
- { id: 1, name: 'Ripple Effect', code: `.scaleX(1.2f).scaleY(1.2f).alpha(0.3f)` }, //Okay super
11
- { id: 2, name: 'Pop Out', code: `.scaleX(1.2f).scaleY(1.2f).alpha(0f)` }, //Okay super
12
- { id: 3, name: 'Super Zoom', code: `.scaleX(1.5f).scaleY(1.5f).alpha(1f)` }, //Okay super
13
-
14
-
15
- { id: 4, name: 'Flip and Fade', code: `.scaleX(0f).scaleY(0f).rotation(180f).alpha(0f)` }, //Okay
16
- { id: 5, name: 'Wipe Away', code: `.translationX(splashScreenView.getWidth()).alpha(0f)` }, //Okay
17
- { id: 6, name: 'Bounce in Spiral', code: `.scaleX(0.5f).scaleY(0.5f).alpha(0.5f).rotation(360f)` }, //Okay
18
- { id: 7, name: 'Fade and Slide', code: `.alpha(0f).translationY(splashScreenView.getHeight())` }, //Okay
19
- { id: 8, name: 'Zoom Out with Bounce', code: `.scaleX(0f).scaleY(0f).alpha(0f).translationY(splashScreenView.getHeight())` }, //Okay
20
- { id: 9, name: 'Twist', code: `.rotation(720f).alpha(0f)` }, //Okay
21
- { id: 10, name: 'Rotate Back', code: `.rotation(-360f).alpha(1f)` }, //Okay
22
- { id: 11, name: 'Stretch In', code: `.scaleX(1.5f).scaleY(1.5f).alpha(1f)` }, //Okay
23
- { id: 12, name: 'Fade and Scale', code: `.alpha(0f).scaleX(0f).scaleY(0f)` }, //Okay
24
- { id: 13, name: 'Slide Left and Fade', code: `.translationX(-splashScreenView.getWidth()).alpha(0f)` }, //Okay
25
-
26
-
27
- { id: 14, name: 'Fade Out', code: `.alpha(0f)` },
28
- { id: 15, name: 'Slide Down', code: `.translationY(splashScreenView.getHeight())` },
29
- { id: 16, name: 'Zoom Out', code: `.scaleX(0f).scaleY(0f).alpha(0f)` },
30
- { id: 17, name: 'Rotate Out', code: `.rotation(360f).alpha(0f)` },
31
- { id: 18, name: 'Slide Up', code: `.translationY(-splashScreenView.getHeight()).alpha(0f)` },
32
- { id: 19, name: 'Bounce Effect', code: `.translationY(splashScreenView.getHeight())` },
33
- { id: 20, name: 'Flip Out', code: `.scaleX(0f).alpha(0f)` },
34
- { id: 21, name: 'Diagonal Slide and Fade Out', code: `.translationX(splashScreenView.getWidth()).translationY(splashScreenView.getHeight()).alpha(0f)` },
35
- { id: 22, name: 'Scale Down with Bounce', code: `.scaleX(0f).scaleY(0f)` },
36
- { id: 23, name: 'Slide Left', code: `.translationX(-splashScreenView.getWidth()).alpha(0f)` },
37
- { id: 24, name: 'Slide Right', code: `.translationX(splashScreenView.getWidth()).alpha(0f)` },
38
- { id: 25, name: 'Scale Up', code: `.scaleX(1f).scaleY(1f).alpha(1f)` },
39
- { id: 26, name: 'Rotate In', code: `.rotation(180f).alpha(1f)` },
40
- { id: 27, name: 'Bounce Up', code: `.translationY(-100f).setInterpolator(new BounceInterpolator())` },
41
- { id: 28, name: 'Flip Horizontal', code: `.scaleX(-1f).alpha(1f)` },
42
- { id: 29, name: 'Zoom In', code: `.scaleX(1f).scaleY(1f).alpha(1f)` },
43
- { id: 30, name: 'Wobble', code: `.translationX(10f).translationX(-10f).translationX(10f)` },
44
- { id: 31, name: 'Vertical Shake', code: `.translationY(10f).translationY(-10f).translationY(10f)` },
45
- { id: 32, name: 'Bounce Down', code: `.translationY(100f).setInterpolator(new BounceInterpolator())` },
46
- { id: 33, name: 'Swing', code: `.rotation(15f).translationX(-10f).rotation(-15f).translationX(10f)` },
47
- { id: 34, name: 'Elastic Bounce', code: `.translationX(30f).translationX(-30f).translationX(15f).translationX(-15f)` },
48
- { id: 35, name: 'Pulse', code: `.scaleX(1.1f).scaleY(1.1f).alpha(1f).setRepeatMode(ValueAnimator.REVERSE).setRepeatCount(ValueAnimator.INFINITE)` },
49
- { id: 36, name: 'Skew', code: `.setRotationX(30f).setRotationY(30f).alpha(0.5f)` },
50
- { id: 37, name: 'Vibrate', code: `.translationX(5f).translationX(-5f).translationX(5f).translationX(-5f)` },
51
- { id: 38, name: 'Speed Out', code: `.alpha(0f).setDuration(300)` },
52
- { id: 39, name: 'Wave', code: `.translationX(20f).translationX(-20f).translationX(20f).translationX(-20f)` },
53
- { id: 40, name: 'Swing Bounce', code: `.rotation(15f).translationX(10f).translationX(-10f)` },
54
- ];
55
-
56
-
57
- // Function to find the package name from capacitor.config.json
58
- function findPackageName() {
59
- const configPath = path.join('capacitor.config.json');
60
- if (!fs.existsSync(configPath)) {
61
- console.error('capacitor.config.json not found. Ensure this is a valid Capacitor project.');
62
- process.exit(1);
63
- }
64
-
65
- const configContent = JSON.parse(fs.readFileSync(configPath, 'utf8'));
66
- return configContent.appId;
67
- }
68
-
69
- // Function to construct the MainActivity.java path
70
- function constructMainActivityPath(packageName) {
71
- const packagePath = packageName.replace(/\./g, '/'); // Convert package name to path
72
- const mainActivityPath = path.join('android', 'app', 'src', 'main', 'java', packagePath, 'MainActivity.java');
73
-
74
- console.log('MainActivity path:', mainActivityPath); // Output for debugging
75
- return mainActivityPath;
76
- }
77
-
78
- // Find package name and MainActivity.java path
79
- const packageName = findPackageName();
80
- if (!packageName) {
81
- console.error('Failed to extract the package name from capacitor.config.json.');
82
- process.exit(1);
83
- }
84
-
85
- const mainActivityPath = constructMainActivityPath(packageName);
86
-
87
- // Display animation options
88
- /* const rl = readline.createInterface({
89
- input: process.stdin,
90
- output: process.stdout,
91
- }); */
92
-
93
- console.log('Select an animation type for the splash screen:');
94
- animations.forEach((animation) => {
95
- //console.log(`${animation.id}. ${animation.name}`);
96
- });
97
-
98
- // Prompt user for animation selection
99
- //rl.question('Enter the number of the animation type: ', (answer) => {
100
-
101
- const answer=1;
102
-
103
- const selectedAnimation = animations.find((anim) => anim.id === parseInt(answer, 10));
104
-
105
- if (!selectedAnimation) {
106
- console.log('Invalid selection. Please run the script again.');
107
- //rl.close();
108
- return;
109
- }
110
-
111
- console.log(`Selected: ${selectedAnimation.name}`);
112
-
113
- // Read the MainActivity.java file
114
- fs.readFile(mainActivityPath, 'utf8', (err, data) => {
115
- if (err) {
116
- console.error(`Error reading MainActivity.java: ${err.message}`);
117
- //rl.close();
118
- return;
119
- }
120
-
121
- // New logic for removing existing code and adding new splash screen animation code
122
- const newMainActivityCode =
123
- `package ${findPackageName()};
124
-
125
- import android.os.Build;
126
- import android.os.Bundle;
127
- import com.getcapacitor.BridgeActivity;
128
-
129
- import androidx.activity.EdgeToEdge;
130
-
131
- public class MainActivity extends BridgeActivity {
132
- @Override
133
- protected void onCreate(Bundle savedInstanceState) {
134
- super.onCreate(savedInstanceState);
135
-
136
- EdgeToEdge.enable(this);
137
-
138
- // Handle custom splash screen exit animation
139
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
140
- getSplashScreen().setOnExitAnimationListener(splashScreenView -> {
141
- // Add your custom animation here (e.g., fade out)
142
- splashScreenView.setAlpha(1f);
143
- splashScreenView.animate()
144
- ${selectedAnimation.code} // Apply selected animation
145
- .setDuration(1000) // Animation duration (1000ms)
146
- .withEndAction(splashScreenView::remove) // Remove splash screen
147
- .start();
148
- });
149
- }
150
- }
151
- }
152
- `;
153
-
154
- // Write the new MainActivity.java content
155
- writeMainActivity(newMainActivityCode);
156
- });
157
-
158
- //rl.close();
159
- //});
160
-
161
- // Write updated data to MainActivity.java
162
- function writeMainActivity(updatedData) {
163
- fs.writeFile(mainActivityPath, updatedData, 'utf8', (err) => {
164
- if (err) {
165
- console.error(`Error writing to MainActivity.java: ${err.message}`);
166
- return;
167
- }
168
- console.log('MainActivity.java updated successfully!');
169
- });
170
- }
1
+ const fs = require('fs');
2
+ const readline = require('readline');
3
+ const path = require('path');
4
+
5
+ // Define the root directory of the project (adjust if needed)
6
+ const projectRoot = path.join('android/app/src/main');
7
+
8
+ // Animation options
9
+ const animations = [
10
+ { id: 1, name: 'Ripple Effect', code: `.scaleX(1.2f).scaleY(1.2f).alpha(0.3f)` }, //Okay super
11
+ { id: 2, name: 'Pop Out', code: `.scaleX(1.2f).scaleY(1.2f).alpha(0f)` }, //Okay super
12
+ { id: 3, name: 'Super Zoom', code: `.scaleX(1.5f).scaleY(1.5f).alpha(1f)` }, //Okay super
13
+
14
+
15
+ { id: 4, name: 'Flip and Fade', code: `.scaleX(0f).scaleY(0f).rotation(180f).alpha(0f)` }, //Okay
16
+ { id: 5, name: 'Wipe Away', code: `.translationX(splashScreenView.getWidth()).alpha(0f)` }, //Okay
17
+ { id: 6, name: 'Bounce in Spiral', code: `.scaleX(0.5f).scaleY(0.5f).alpha(0.5f).rotation(360f)` }, //Okay
18
+ { id: 7, name: 'Fade and Slide', code: `.alpha(0f).translationY(splashScreenView.getHeight())` }, //Okay
19
+ { id: 8, name: 'Zoom Out with Bounce', code: `.scaleX(0f).scaleY(0f).alpha(0f).translationY(splashScreenView.getHeight())` }, //Okay
20
+ { id: 9, name: 'Twist', code: `.rotation(720f).alpha(0f)` }, //Okay
21
+ { id: 10, name: 'Rotate Back', code: `.rotation(-360f).alpha(1f)` }, //Okay
22
+ { id: 11, name: 'Stretch In', code: `.scaleX(1.5f).scaleY(1.5f).alpha(1f)` }, //Okay
23
+ { id: 12, name: 'Fade and Scale', code: `.alpha(0f).scaleX(0f).scaleY(0f)` }, //Okay
24
+ { id: 13, name: 'Slide Left and Fade', code: `.translationX(-splashScreenView.getWidth()).alpha(0f)` }, //Okay
25
+
26
+
27
+ { id: 14, name: 'Fade Out', code: `.alpha(0f)` },
28
+ { id: 15, name: 'Slide Down', code: `.translationY(splashScreenView.getHeight())` },
29
+ { id: 16, name: 'Zoom Out', code: `.scaleX(0f).scaleY(0f).alpha(0f)` },
30
+ { id: 17, name: 'Rotate Out', code: `.rotation(360f).alpha(0f)` },
31
+ { id: 18, name: 'Slide Up', code: `.translationY(-splashScreenView.getHeight()).alpha(0f)` },
32
+ { id: 19, name: 'Bounce Effect', code: `.translationY(splashScreenView.getHeight())` },
33
+ { id: 20, name: 'Flip Out', code: `.scaleX(0f).alpha(0f)` },
34
+ { id: 21, name: 'Diagonal Slide and Fade Out', code: `.translationX(splashScreenView.getWidth()).translationY(splashScreenView.getHeight()).alpha(0f)` },
35
+ { id: 22, name: 'Scale Down with Bounce', code: `.scaleX(0f).scaleY(0f)` },
36
+ { id: 23, name: 'Slide Left', code: `.translationX(-splashScreenView.getWidth()).alpha(0f)` },
37
+ { id: 24, name: 'Slide Right', code: `.translationX(splashScreenView.getWidth()).alpha(0f)` },
38
+ { id: 25, name: 'Scale Up', code: `.scaleX(1f).scaleY(1f).alpha(1f)` },
39
+ { id: 26, name: 'Rotate In', code: `.rotation(180f).alpha(1f)` },
40
+ { id: 27, name: 'Bounce Up', code: `.translationY(-100f).setInterpolator(new BounceInterpolator())` },
41
+ { id: 28, name: 'Flip Horizontal', code: `.scaleX(-1f).alpha(1f)` },
42
+ { id: 29, name: 'Zoom In', code: `.scaleX(1f).scaleY(1f).alpha(1f)` },
43
+ { id: 30, name: 'Wobble', code: `.translationX(10f).translationX(-10f).translationX(10f)` },
44
+ { id: 31, name: 'Vertical Shake', code: `.translationY(10f).translationY(-10f).translationY(10f)` },
45
+ { id: 32, name: 'Bounce Down', code: `.translationY(100f).setInterpolator(new BounceInterpolator())` },
46
+ { id: 33, name: 'Swing', code: `.rotation(15f).translationX(-10f).rotation(-15f).translationX(10f)` },
47
+ { id: 34, name: 'Elastic Bounce', code: `.translationX(30f).translationX(-30f).translationX(15f).translationX(-15f)` },
48
+ { id: 35, name: 'Pulse', code: `.scaleX(1.1f).scaleY(1.1f).alpha(1f).setRepeatMode(ValueAnimator.REVERSE).setRepeatCount(ValueAnimator.INFINITE)` },
49
+ { id: 36, name: 'Skew', code: `.setRotationX(30f).setRotationY(30f).alpha(0.5f)` },
50
+ { id: 37, name: 'Vibrate', code: `.translationX(5f).translationX(-5f).translationX(5f).translationX(-5f)` },
51
+ { id: 38, name: 'Speed Out', code: `.alpha(0f).setDuration(300)` },
52
+ { id: 39, name: 'Wave', code: `.translationX(20f).translationX(-20f).translationX(20f).translationX(-20f)` },
53
+ { id: 40, name: 'Swing Bounce', code: `.rotation(15f).translationX(10f).translationX(-10f)` },
54
+ ];
55
+
56
+
57
+ // Function to find the package name from capacitor.config.json
58
+ function findPackageName() {
59
+ const configPath = path.join('capacitor.config.json');
60
+ if (!fs.existsSync(configPath)) {
61
+ console.error('capacitor.config.json not found. Ensure this is a valid Capacitor project.');
62
+ process.exit(1);
63
+ }
64
+
65
+ const configContent = JSON.parse(fs.readFileSync(configPath, 'utf8'));
66
+ return configContent.appId;
67
+ }
68
+
69
+ // Function to construct the MainActivity.java path
70
+ function constructMainActivityPath(packageName) {
71
+ const packagePath = packageName.replace(/\./g, '/'); // Convert package name to path
72
+ const mainActivityPath = path.join('android', 'app', 'src', 'main', 'java', packagePath, 'MainActivity.java');
73
+
74
+ console.log('MainActivity path:', mainActivityPath); // Output for debugging
75
+ return mainActivityPath;
76
+ }
77
+
78
+ // Find package name and MainActivity.java path
79
+ const packageName = findPackageName();
80
+ if (!packageName) {
81
+ console.error('Failed to extract the package name from capacitor.config.json.');
82
+ process.exit(1);
83
+ }
84
+
85
+ const mainActivityPath = constructMainActivityPath(packageName);
86
+
87
+ // Display animation options
88
+ /* const rl = readline.createInterface({
89
+ input: process.stdin,
90
+ output: process.stdout,
91
+ }); */
92
+
93
+ console.log('Select an animation type for the splash screen:');
94
+ animations.forEach((animation) => {
95
+ //console.log(`${animation.id}. ${animation.name}`);
96
+ });
97
+
98
+ // Prompt user for animation selection
99
+ //rl.question('Enter the number of the animation type: ', (answer) => {
100
+
101
+ const answer=1;
102
+
103
+ const selectedAnimation = animations.find((anim) => anim.id === parseInt(answer, 10));
104
+
105
+ if (!selectedAnimation) {
106
+ console.log('Invalid selection. Please run the script again.');
107
+ //rl.close();
108
+ return;
109
+ }
110
+
111
+ console.log(`Selected: ${selectedAnimation.name}`);
112
+
113
+ // Read the MainActivity.java file
114
+ fs.readFile(mainActivityPath, 'utf8', (err, data) => {
115
+ if (err) {
116
+ console.error(`Error reading MainActivity.java: ${err.message}`);
117
+ //rl.close();
118
+ return;
119
+ }
120
+
121
+ // New logic for removing existing code and adding new splash screen animation code
122
+ const newMainActivityCode =
123
+ `package ${findPackageName()};
124
+
125
+ import android.os.Build;
126
+ import android.os.Bundle;
127
+ import com.getcapacitor.BridgeActivity;
128
+
129
+ import androidx.activity.EdgeToEdge;
130
+
131
+ public class MainActivity extends BridgeActivity {
132
+ @Override
133
+ protected void onCreate(Bundle savedInstanceState) {
134
+ super.onCreate(savedInstanceState);
135
+
136
+ EdgeToEdge.enable(this);
137
+
138
+ // Handle custom splash screen exit animation
139
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
140
+ getSplashScreen().setOnExitAnimationListener(splashScreenView -> {
141
+ // Add your custom animation here (e.g., fade out)
142
+ splashScreenView.setAlpha(1f);
143
+ splashScreenView.animate()
144
+ ${selectedAnimation.code} // Apply selected animation
145
+ .setDuration(1000) // Animation duration (1000ms)
146
+ .withEndAction(splashScreenView::remove) // Remove splash screen
147
+ .start();
148
+ });
149
+ }
150
+ }
151
+ }
152
+ `;
153
+
154
+ // Write the new MainActivity.java content
155
+ writeMainActivity(newMainActivityCode);
156
+ });
157
+
158
+ //rl.close();
159
+ //});
160
+
161
+ // Write updated data to MainActivity.java
162
+ function writeMainActivity(updatedData) {
163
+ fs.writeFile(mainActivityPath, updatedData, 'utf8', (err) => {
164
+ if (err) {
165
+ console.error(`Error writing to MainActivity.java: ${err.message}`);
166
+ return;
167
+ }
168
+ console.log('MainActivity.java updated successfully!');
169
+ });
170
+ }
@@ -1,11 +1,11 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <resources>
3
- <color name="splashscreen_background">#FFFFFF</color>
4
-
5
- <style name="Theme.Codeplay.SplashScreen" parent="Theme.SplashScreen.IconBackground">
6
- <item name="windowSplashScreenBackground">@color/splashscreen_background</item>
7
- <item name="windowSplashScreenAnimatedIcon">@drawable/splash_icon</item>
8
- <item name="windowSplashScreenAnimationDuration">10000</item>
9
- <item name="postSplashScreenTheme">@style/Theme.AppCompat.NoActionBar</item>
10
- </style>
11
- </resources>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <resources>
3
+ <color name="splashscreen_background">#FFFFFF</color>
4
+
5
+ <style name="Theme.Codeplay.SplashScreen" parent="Theme.SplashScreen.IconBackground">
6
+ <item name="windowSplashScreenBackground">@color/splashscreen_background</item>
7
+ <item name="windowSplashScreenAnimatedIcon">@drawable/splash_icon</item>
8
+ <item name="windowSplashScreenAnimationDuration">10000</item>
9
+ <item name="postSplashScreenTheme">@style/Theme.AppCompat.NoActionBar</item>
10
+ </style>
11
+ </resources>