Facebook
From Mammoth Marten, 5 Years ago, written in Java.
This paste is a reply to Untitled from Tacky Armadillo - go back
Embed
Viewing differences between Untitled and Re: Untitled
public class DroneApp extends Application {
    private IARDrone drone;

    public void onCreate() {

        drone = new ARDrone("192.168.1.1", null); // null because of missing video support on Android
        super.onCreate();

    }

    public IARDrone getARDrone()
    {
        return drone;
    }
}

  
    #000000
    #000000
    #424242

    #2962FF
    #2979FF
    #448AFF
    
    #DE000000
    #757575
    #123340
    #61000000


    MoveArDrone



    
    
        
        @color/colorPrimary
        @color/colorPrimaryDark
        @color/colorAccent
    




manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="behappy.kiwinets.szakhi.moveardrone">

    
    
    
    
    

             android:name=".DroneApp"
        android:screenOrientation="landscape"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">