How to make share button in Sketchware?

How to make share button in Sketchware? Add a button follow below image. Click on button add source directly blog follow below image. Copy code..... shareApplication(); Create a block follow below image. Click on your block follow below image. Copy code } private void shareApplication() { android.content.pm.ApplicationInfo app = getApplicationContext().getApplicationInfo(); String filePath = app.sourceDir; Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("*/*"); java.io.File originalApk = new java.io.File(filePath); try { java.io.File tempFile = new java.io.File(getExternalCacheDir() + "/ExtractedApk"); if (!tempFile.isDirectory()) if (!tempFile.mkdirs()) return; tempFile = new java.io.File(tempFil...