マニフェストファイルのactivityに縦向き指定を追加する
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
}
}
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:name=".MyApplication"
android:label="@string/app_name"
G-Tracker is an application that performs tracking of the current location using GPS built in Android. You can also get navigation an...