diff --git a/.gitignore b/.gitignore
index 329423e..41316ab 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,8 +18,6 @@ proguard/
# Log Files
*.log
-app-pro/
-
# Built application files
/*/build/
diff --git a/app-pro/.gitignore b/app-pro/.gitignore
new file mode 100644
index 0000000..796b96d
--- /dev/null
+++ b/app-pro/.gitignore
@@ -0,0 +1 @@
+/build
diff --git a/app-pro/build.gradle b/app-pro/build.gradle
new file mode 100644
index 0000000..beb70b5
--- /dev/null
+++ b/app-pro/build.gradle
@@ -0,0 +1,49 @@
+/*
+ * Copyright (C) 2014 Vlad Mihalachi
+ *
+ * This file is part of Turbo Editor.
+ *
+ * Turbo Editor is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Turbo Editor is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 20
+ buildToolsVersion "20.0.0"
+
+ defaultConfig {
+ applicationId "com.maskyn.fileeditorpro"
+ minSdkVersion 14
+ targetSdkVersion 20
+ versionCode 26
+ versionName "1.10"
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_7
+ targetCompatibility JavaVersion.VERSION_1_7
+ }
+ buildTypes {
+ release {
+ runProguard false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ compile project(':libraries:sharedCode')
+}
diff --git a/app-pro/proguard-rules.pro b/app-pro/proguard-rules.pro
new file mode 100644
index 0000000..9f604d1
--- /dev/null
+++ b/app-pro/proguard-rules.pro
@@ -0,0 +1,17 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in C:/Users/Vlad/AppData/Local/Android/android-sdk/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the proguardFiles
+# directive in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
diff --git a/app-pro/src/androidTest/java/com/maskyn/fileeditorpro/ApplicationTest.java b/app-pro/src/androidTest/java/com/maskyn/fileeditorpro/ApplicationTest.java
new file mode 100644
index 0000000..e85c652
--- /dev/null
+++ b/app-pro/src/androidTest/java/com/maskyn/fileeditorpro/ApplicationTest.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2014 Vlad Mihalachi
+ *
+ * This file is part of Turbo Editor.
+ *
+ * Turbo Editor is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Turbo Editor is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+package com.maskyn.fileeditorpro;
+
+import android.app.Application;
+import android.test.ApplicationTestCase;
+
+/**
+ * Testing Fundamentals
+ */
+public class ApplicationTest extends ApplicationTestCase {
+ public ApplicationTest() {
+ super(Application.class);
+ }
+}
\ No newline at end of file
diff --git a/app-pro/src/main/AndroidManifest.xml b/app-pro/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..d8c2a3d
--- /dev/null
+++ b/app-pro/src/main/AndroidManifest.xml
@@ -0,0 +1,130 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app-pro/src/main/java/com/maskyn/fileeditorpro/HomeActivity.java b/app-pro/src/main/java/com/maskyn/fileeditorpro/HomeActivity.java
new file mode 100644
index 0000000..b4ba013
--- /dev/null
+++ b/app-pro/src/main/java/com/maskyn/fileeditorpro/HomeActivity.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2014 Vlad Mihalachi
+ *
+ * This file is part of Turbo Editor.
+ *
+ * Turbo Editor is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Turbo Editor is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+package com.maskyn.fileeditorpro;
+
+import android.os.Bundle;
+
+import sharedcode.turboeditor.activity.BaseHomeActivity;
+
+public class HomeActivity extends BaseHomeActivity {
+
+ @Override
+ public void displayInterstitial() {
+ // nothing to do here
+ }
+}