Hello dear friends,
I have a main problem with adding library. I couldnt add any library to AIDE.
Maybe from this I cant create a very simple window with codes for example. Because of JFrame doesnt recognised in AIDE. I almost read all info from here but still didnt fix my problem. I will add some pics and details pls if someone understand what is my problem, I will be glad and appriciate him/her…
My small prog is just this:
package src;
import javax.swing.JFrame;
public class Pencere
{
public static void main (String[]args)
{
JFrame pencere=new JFrame();
pencere.sizeSet(640,480);
pencere.setVisible(true);
}
}
its not working….
I give file path to in AIDE/Settings/Build& Run/SDK>storage/emulated/0/Android/obb/com. aide. ndk/main. 1706280005.com. aide. ndk. obb
My build.gradle is this:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath ‘com.android.tools.build:gradle:1.+’
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
My setting.gradle is just this:
include ‘:app’