Android Bulb
Sketchware Pro v6.4.0 Public Beta 3.apk
What's new?
- Android 11 storage change, which requires new special access. You should see the dialog either on startup or the 2nd one after granting storage permissions.
- Removed Tutorials tab from MainActivity. It was empty anyway.
What's been fixed?
- Projects using an image load from URL or in general the Glide library should work again when trying to load GIFs. (49f3daf4638e8f56588e808030ad029afcbba04b)
- "About modders" shouldn't crash anymore on devices without a browser. (6475fce889c9e19904ea9fc04cb70b2a4b876f46)
- Projects using the built-in OneSignal component shouldn't fail at AndroidManifest.xml anymore! (5131e811f3a0e472f9dc3df2115cabcea4a295d0)
- (Minor) repeat for (N) (variable name) block should now use a correct spec, re-place it from the blocks menu to update its spec. (11699ad0fddbdf7bc9d4fb407734fc87e38c9a95)
- (Major) AAPT2 bug not creating its compiled built-in libraries resources directory. (0639250498189a2ff5b12c1fc239a3ea40b3a223)
- Local library Manager shouldn't crash anymore while scrolling/refreshing libraries. (6bed60b3b3e98e0c27545ca8d792533ea43cf00e)
Known issues
- Projects still using AAPT and with AppCompat turned on won't compile. That's an issue of some built-in libraries and AAPT being old/deprecated. It'll be removed until stable v6.4.0.
- Local library Manager doesn't enable/disable libraries unless you leave the screen before the list item gets invisible.
- Android 11 storage change, which requires new special access. You should see the dialog either on startup or the 2nd one after granting storage permissions.
- Removed Tutorials tab from MainActivity. It was empty anyway.
What's been fixed?
- Projects using an image load from URL or in general the Glide library should work again when trying to load GIFs. (49f3daf4638e8f56588e808030ad029afcbba04b)
- "About modders" shouldn't crash anymore on devices without a browser. (6475fce889c9e19904ea9fc04cb70b2a4b876f46)
- Projects using the built-in OneSignal component shouldn't fail at AndroidManifest.xml anymore! (5131e811f3a0e472f9dc3df2115cabcea4a295d0)
- (Minor) repeat for (N) (variable name) block should now use a correct spec, re-place it from the blocks menu to update its spec. (11699ad0fddbdf7bc9d4fb407734fc87e38c9a95)
- (Major) AAPT2 bug not creating its compiled built-in libraries resources directory. (0639250498189a2ff5b12c1fc239a3ea40b3a223)
- Local library Manager shouldn't crash anymore while scrolling/refreshing libraries. (6bed60b3b3e98e0c27545ca8d792533ea43cf00e)
Known issues
- Projects still using AAPT and with AppCompat turned on won't compile. That's an issue of some built-in libraries and AAPT being old/deprecated. It'll be removed until stable v6.4.0.
- Local library Manager doesn't enable/disable libraries unless you leave the screen before the list item gets invisible.
goTop = true;
goBottom = false;
listview1.setOnScrollListener(new AbsListView.OnScrollListener(){
private int one;
@Override public void onScrollStateChanged(AbsListView view, int scrollState){
if (listview1.getLastVisiblePosition() == listview1.getAdapter().getCount() -1 && listview1.getChildAt(listview1.getChildCount() - 1).getBottom() <= listview1.getHeight()){
}
}
@Override public void onScroll(AbsListView view, int two, int visible_items, int total_item) {
if(one<two){
if (goTop) {
goBottom = true;
goTop = false;
_fab.hide();
}
} if(one>two) {
if (goBottom) {
goBottom = false;
goTop = true;
_fab.show();
}
}
one=two;
}
});
goBottom = false;
listview1.setOnScrollListener(new AbsListView.OnScrollListener(){
private int one;
@Override public void onScrollStateChanged(AbsListView view, int scrollState){
if (listview1.getLastVisiblePosition() == listview1.getAdapter().getCount() -1 && listview1.getChildAt(listview1.getChildCount() - 1).getBottom() <= listview1.getHeight()){
}
}
@Override public void onScroll(AbsListView view, int two, int visible_items, int total_item) {
if(one<two){
if (goTop) {
goBottom = true;
goTop = false;
_fab.hide();
}
} if(one>two) {
if (goBottom) {
goBottom = false;
goTop = true;
_fab.show();
}
}
one=two;
}
});
What's new?
- Updated Create project backup dialog to fit better to Sketchware.
- Support for scrolling in Build Settings and Project Configuration.
- Automatic classpath-added directory for all projects: Find it in /Internal storage/.sketchware/data/<project ID>/files/classpath/.
- AAPT2 as Resource Processor by default, and also, AAPT being removed. Its logic and binaries are still there for now.
- Custom versions of generated files, such as FileUtil.java! Just create a file in a Manager named exactly as the one you want to replace, for example FileUtil.java in Java Manager or main.xml in Resource Manager at res/layout/.
- (Under-the-hood) Speed improvements, as String#format(String, Object...) calls have been converted to + /StringBuilder + StringBuilder#append(String) in many code-generating classes.
What's been fixed?
- All new Local library Manager issues, as we've temporarily reverted it back to almost-v6.3.0 fix1 logic
- A Glide artefact not getting added to the APK, that'd cause ClassDefNotFoundExceptions for com.bumptech.glide.gifdecoder.GifDecoder$BitmapProvider
- New projects having 1.0.0 as Version Name
- Extra Firebase Auth listener fields (ergo those not in vanilla Sketchware) not being added to Activities using a Firebase Auth Component
Known issues
- ~\~No new ones! :D (at least as of 2021-08-08T18:36:??Z+0200)~\
Nevermind, there's some critical ones slow_pensive
- Missing space in adapters' View initializers (finalTextView textview1... for example)
- (Can't reproduce) mysterious import ; line in Activity when using Intent Component
(Last update: 2021-08-08T18:36:??Z+0200)
Important Firebase Database note
As it seems that not many people have read Public Beta 1's changelog, we'll just tell it again:
- Firebase Database storage locations have been updated, and also in Sketchware Pro projects. You have to reconfigure the library for each project, and now, use the full Database URL without https:// at the start and / at the end as the Project ID. Example: whatever-default-rtdb.asia-southeast1.firebasedatabase.app
Link
> https://drive.google.com/file/d/173652q3NQGwXd4RVG-MpF0F9UY0tlKcr/view?usp=sharing
- Updated Create project backup dialog to fit better to Sketchware.
- Support for scrolling in Build Settings and Project Configuration.
- Automatic classpath-added directory for all projects: Find it in /Internal storage/.sketchware/data/<project ID>/files/classpath/.
- AAPT2 as Resource Processor by default, and also, AAPT being removed. Its logic and binaries are still there for now.
- Custom versions of generated files, such as FileUtil.java! Just create a file in a Manager named exactly as the one you want to replace, for example FileUtil.java in Java Manager or main.xml in Resource Manager at res/layout/.
- (Under-the-hood) Speed improvements, as String#format(String, Object...) calls have been converted to + /StringBuilder + StringBuilder#append(String) in many code-generating classes.
What's been fixed?
- All new Local library Manager issues, as we've temporarily reverted it back to almost-v6.3.0 fix1 logic
- A Glide artefact not getting added to the APK, that'd cause ClassDefNotFoundExceptions for com.bumptech.glide.gifdecoder.GifDecoder$BitmapProvider
- New projects having 1.0.0 as Version Name
- Extra Firebase Auth listener fields (ergo those not in vanilla Sketchware) not being added to Activities using a Firebase Auth Component
Known issues
- ~\~No new ones! :D (at least as of 2021-08-08T18:36:??Z+0200)~\
Nevermind, there's some critical ones slow_pensive
- Missing space in adapters' View initializers (finalTextView textview1... for example)
- (Can't reproduce) mysterious import ; line in Activity when using Intent Component
(Last update: 2021-08-08T18:36:??Z+0200)
Important Firebase Database note
As it seems that not many people have read Public Beta 1's changelog, we'll just tell it again:
- Firebase Database storage locations have been updated, and also in Sketchware Pro projects. You have to reconfigure the library for each project, and now, use the full Database URL without https:// at the start and / at the end as the Project ID. Example: whatever-default-rtdb.asia-southeast1.firebasedatabase.app
Link
> https://drive.google.com/file/d/173652q3NQGwXd4RVG-MpF0F9UY0tlKcr/view?usp=sharing
Android Bulb
What's new? - Updated Create project backup dialog to fit better to Sketchware. - Support for scrolling in Build Settings and Project Configuration. - Automatic classpath-added directory for all projects: Find it in /Internal storage/.sketchware/data/<project…
YouTube
#SketchWare Pro Beta-4 Released Know All about New Updates|हिन्दी|AndroidBulb
Friends is video me bataya gaya hai SketchWare Pro Ke New Updates Ke Bare Me. Video Ko like👍 share♥️ jarur kare dhanyawaad.
Share,Support,Subscribe,Links!!!!
Telegram Code Search Keywords
#swprobeta4.6.4.0
App Link:-https://www.tgoop.com/androidbulb_channel/1115…
Share,Support,Subscribe,Links!!!!
Telegram Code Search Keywords
#swprobeta4.6.4.0
App Link:-https://www.tgoop.com/androidbulb_channel/1115…
How To Create Tooltips In SketchWare Pro By Using Library
#swprotooltips
1. Use Block
2. Use Library
For More Information Watch Video Below Link!
#swprotooltips
1. Use Block
2. Use Library
For More Information Watch Video Below Link!
How to download SketchWare pro public Beta-5
What's new in sketchware pro public Beta-5
#swprobeta5.6.4.0
What's new in sketchware pro public Beta-5
#swprobeta5.6.4.0