• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps package imports?

jon80

Member
manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.basicgesturedetect"
android:versionCode="1"
android:versionName="1.0">

AndroidManifest.xml
I think that Android studio underlines the text in red, and, I am not sure why as the warning message is not very clear to me, am I missing something?
 
Hi @jon80, :)

I'm not sure about uploading the java files, but I do know that Java syntax highlighting was recently added to the forum:

[code=java]importjava.util.ArrayList;
importjava.util.Scanner;
importjava.io.File;
importjava.io.IOException;
importjava.util.Arrays;[/code]

yields

Java:
importjava.util.ArrayList;
importjava.util.Scanner;
importjava.io.File;
importjava.io.IOException;
importjava.util.Arrays;

So you could just copy/paste the relevant code here if needed. :)
 
Back
Top Bottom