owly
Banned
-
- Joined
- Oct 26, 2018
- Posts
- 2,294
after seeing that video of dan cilley being threatened by 2 white knight cucks, in shiny soy armor,
I got an idea for a simple app to boost up the incel fighting spirit.
as the app activates it loop plays your favorite fight song, pumping you up with extra energy to break through said soylents face. :
on android studio :
1 start a new project
2 add a raw names directory in the res folder and paste fighto.mp3 in there
3 paste this code in the Main.java file (don't delete the 1st line (package line))
enable dev mode with debug
run the app with your phone connected
use the app when you need to, simply activate it with one click and you are ready to go (that's why the code is in the onCreate methode)
here is my current fight song :
what's yours ?
I got an idea for a simple app to boost up the incel fighting spirit.
as the app activates it loop plays your favorite fight song, pumping you up with extra energy to break through said soylents face. :
on android studio :
1 start a new project
2 add a raw names directory in the res folder and paste fighto.mp3 in there
3 paste this code in the Main.java file (don't delete the 1st line (package line))
Code:
import android.media.MediaPlayer;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SeekBar;
import java.io.IOException;
public class MainActivity extends AppCompatActivity {
MediaPlayer mediaPlayer;
SeekBar seekCbBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mediaPlayer = MediaPlayer.create(this, R.raw.fighto);
mediaPlayer.setLooping(true);
mediaPlayer.start();
}
}
enable dev mode with debug
run the app with your phone connected
use the app when you need to, simply activate it with one click and you are ready to go (that's why the code is in the onCreate methode)
here is my current fight song :
what's yours ?