Jdownloader : Download
param(
[Parameter(Mandatory = $true)]
[string]$InputFolder,Jdownloader : Download
param(
[Parameter(Mandatory = $true)]
[string]$InputFolder,| package com.blogspot.situbondoprogrammer.voicepress | |
| import android.content.Context | |
| import android.media.MediaPlayer | |
| class SimpleAudioPlayer { | |
| private var mMediaPlayer: MediaPlayer = MediaPlayer() | |
| private fun stopAudio() { | |
| try { |
| private lateinit var binding: ActivityMainBinding | |
| override fun onCreate(savedInstanceState: Bundle) { | |
| super.onCreate(savedInstanceState) | |
| binding = ActivityMainBinding.inflate(layoutInflater) | |
| val view = binding.root | |
| setContentView(view) | |
| b.apply { | |
| btn1.setOnClickListener(listenerVoice) | |
| tv1.setOnClickListener { requestAPI() } |
| # To contribute improvements to CI/CD templates, please follow the Development guide at: | |
| # https://docs.gitlab.com/ee/development/cicd/templates.html | |
| # This specific template is located at: | |
| # https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Android.gitlab-ci.yml | |
| # Read more about this script on this blog post https://about.gitlab.com/2018/10/24/setting-up-gitlab-ci-for-android-projects/, by Jason Lenny | |
| # If you are interested in using Android with FastLane for publishing take a look at the Android-Fastlane template. | |
| image: openjdk:11-jdk |
| public class AuthenticationInterceptor implements Interceptor { | |
| private String authToken; | |
| public AuthenticationInterceptor(String token) { | |
| this.authToken = token; | |
| } | |
| @Override | |
| public Response intercept(Chain chain) throws IOException { |
| public class MainActivity extends AppCompatActivity { | |
| @Override | |
| protected void onCreate(Bundle savedInstanceState) { | |
| super.onCreate(savedInstanceState); | |
| setContentView(R.layout.activity_main); | |
| showMyDialog(this); | |
| } | |
| public void showMyDialog(final Activity activity) { |
| <?xml version="1.0" encoding="utf-8"?> | |
| <resources> | |
| <string name="fa-adjust"></string> | |
| <string name="fa-adn"></string> | |
| <string name="fa-align-center"></string> | |
| <string name="fa-align-justify"></string> | |
| <string name="fa-align-left"></string> | |
| <string name="fa-align-right"></string> | |
| <string name="fa-ambulance"></string> | |
| <string name="fa-anchor"></string> |
| #! /bin/bash | |
| ## This script is for taking a screen shot of an Android device. | |
| ## If possible, it tries to resize the image file and then copy to the clipboard. | |
| ## | |
| ## Note the script generates screenshot_yyyyMMddHHmmss.png and screenshot_yyyyMMddHHmmss_s.png | |
| ## under /sdcard on the device (you can specify another location with '-t' option) | |
| ## and copies it to the current working directory. | |
| ## | |
| ## The script passes unrecognized arguments to adb command, which means you can specify "-e" or "-d" |
| # Di beberapa versi gradle secara default, gradle dalam keadaan mati | |
| # Tentu dengan menghidupkannya tidak perlu melakukan proses startup berulang kali | |
| # ada baiknya anda membaca https://docs.gradle.org/current/userguide/gradle_daemon.html | |
| org.gradle.daemon=true | |
| # Opsi spesifik dalam menentukan JVM arguments pada proses daemon dimana hal ini mempengaruhi kinerja memori. | |
| # https://docs.gradle.org/current/userguide/userguide_single.html#sec:gradle_configuration_properties | |
| # Default value: -Xmx10248m -XX:MaxPermSize=256m |
| sdk.dir=/Users/creatorbe/Library/Android/sdk |