Skip to content
Snippets Groups Projects
Select Git revision
  • 0a52f8676b261e622c76c140e9009e2e3a9ed843
  • master default protected
  • 27-improve-app-metadata
  • 6-fix-display-grid
  • Release_1.9.1_39 protected
  • Release_1.9.0_38 protected
  • Release_1.8.2_37 protected
  • Release_1.8.1_36 protected
  • Release_1.8.0_35 protected
  • Release_1.7.0_34 protected
  • Release_1.6.0_33 protected
  • Release_1.5.0_32 protected
  • Release_1.4.3_31 protected
  • Release_1.4.2_30 protected
  • Release_1.4.1_29 protected
  • Release_1.4.0_28 protected
  • Release_1.3.1_27 protected
  • Release_1.3.0_26 protected
  • Release_1.2.1_25 protected
  • Release_1.2.0_24 protected
  • Release_1.1.0_23 protected
  • Release_1.0.21_22 protected
  • Release_1.0.20_21 protected
  • Release_1.0.19_20 protected
24 results

game_end.dart

Blame
  • MainActivity.java 821 B
    package ovh.ice.icecons;
    
    import android.app.WallpaperManager;
    import android.content.Intent;
    import android.net.Uri;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.view.View;
    
    import java.io.IOException;
    
    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
    
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    
        public void gitLink(View v) {
    
            Uri uri = Uri.parse("https://github.com/1C3/ICEcons");
            Intent intent = new Intent(Intent.ACTION_VIEW, uri);
            startActivity(intent);
        }
    
        public void wallpaperPicker(View v) {
    
            Intent intent = new Intent(this, WallpaperActivity.class);
            startActivity(intent);
        }
    }