changes
This commit is contained in:
parent
324bbda552
commit
53a2b84f51
6
android-app-core/AndroidManifest.xml
Normal file
6
android-app-core/AndroidManifest.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="org.solovyev.android.calculator.core"
|
||||||
|
android:versionCode="1"
|
||||||
|
android:versionName="1.0"/>
|
6
android-app-widget/AndroidManifest.xml
Normal file
6
android-app-widget/AndroidManifest.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="org.solovyev.android.calculator.widget"
|
||||||
|
android:versionCode="1"
|
||||||
|
android:versionName="1.0"/>
|
@ -24,8 +24,9 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.solovyev.android.calculator</groupId>
|
<groupId>org.solovyev.android</groupId>
|
||||||
<artifactId>calculatorpp-android-app-core</artifactId>
|
<artifactId>calculatorpp-android-app-core</artifactId>
|
||||||
|
<type>apklib</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.ads;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package net.robotmedia.billing;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.core;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.db;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.http;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.keyboard;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.list;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.menu;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.other;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.prefs;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
/** Automatically generated file. DO NOT MODIFY */
|
|
||||||
package org.solovyev.android.view;
|
|
||||||
|
|
||||||
public final class BuildConfig {
|
|
||||||
public final static boolean DEBUG = true;
|
|
||||||
}
|
|
@ -24,8 +24,15 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.solovyev.android.calculator</groupId>
|
<groupId>org.solovyev.android</groupId>
|
||||||
<artifactId>calculatorpp-android-app-core</artifactId>
|
<artifactId>calculatorpp-android-app-core</artifactId>
|
||||||
|
<type>apklib</type>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.solovyev.android</groupId>
|
||||||
|
<artifactId>calculatorpp-android-app-widget</artifactId>
|
||||||
|
<type>apklib</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -9,19 +9,21 @@
|
|||||||
|
|
||||||
# Project target.
|
# Project target.
|
||||||
target=android-15
|
target=android-15
|
||||||
android.library.reference.1=gen-external-apklibs/org.solovyev.android_android-common-all_1.0.6
|
android.library.reference.1=../android-app-core
|
||||||
android.library.reference.2=gen-external-apklibs/org.solovyev.android_android-common-ads_1.0.6
|
android.library.reference.2=../android-app-widget
|
||||||
android.library.reference.3=gen-external-apklibs/org.solovyev.android_android-common-core_1.0.6
|
android.library.reference.3=gen-external-apklibs/org.solovyev.android_android-common-all_1.0.6
|
||||||
android.library.reference.4=gen-external-apklibs/org.solovyev.android_android-common-billing_1.0.6
|
android.library.reference.4=gen-external-apklibs/org.solovyev.android_android-common-ads_1.0.6
|
||||||
android.library.reference.5=gen-external-apklibs/org.solovyev.android_android-common-db_1.0.6
|
android.library.reference.5=gen-external-apklibs/org.solovyev.android_android-common-core_1.0.6
|
||||||
android.library.reference.6=gen-external-apklibs/org.solovyev.android_android-common-http_1.0.6
|
android.library.reference.6=gen-external-apklibs/org.solovyev.android_android-common-billing_1.0.6
|
||||||
android.library.reference.7=gen-external-apklibs/org.solovyev.android_android-common-list_1.0.6
|
android.library.reference.7=gen-external-apklibs/org.solovyev.android_android-common-db_1.0.6
|
||||||
android.library.reference.8=gen-external-apklibs/org.solovyev.android_android-common-view_1.0.6
|
android.library.reference.8=gen-external-apklibs/org.solovyev.android_android-common-http_1.0.6
|
||||||
android.library.reference.9=gen-external-apklibs/org.solovyev.android_android-common-preferences_1.0.6
|
android.library.reference.9=gen-external-apklibs/org.solovyev.android_android-common-list_1.0.6
|
||||||
android.library.reference.10=gen-external-apklibs/org.solovyev.android_android-common-menu_1.0.6
|
android.library.reference.10=gen-external-apklibs/org.solovyev.android_android-common-view_1.0.6
|
||||||
android.library.reference.11=gen-external-apklibs/org.solovyev.android_android-common-other_1.0.6
|
android.library.reference.11=gen-external-apklibs/org.solovyev.android_android-common-preferences_1.0.6
|
||||||
android.library.reference.12=gen-external-apklibs/org.solovyev.android_android-common-sherlock_1.0.6
|
android.library.reference.12=gen-external-apklibs/org.solovyev.android_android-common-menu_1.0.6
|
||||||
android.library.reference.13=gen-external-apklibs/com.actionbarsherlock_actionbarsherlock_4.2.0
|
android.library.reference.13=gen-external-apklibs/org.solovyev.android_android-common-other_1.0.6
|
||||||
android.library.reference.14=gen-external-apklibs/org.solovyev.android_android-common-keyboard_1.0.6
|
android.library.reference.14=gen-external-apklibs/org.solovyev.android_android-common-sherlock_1.0.6
|
||||||
|
android.library.reference.15=gen-external-apklibs/com.actionbarsherlock_actionbarsherlock_4.2.0
|
||||||
|
android.library.reference.16=gen-external-apklibs/org.solovyev.android_android-common-keyboard_1.0.6
|
||||||
|
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
<groupId>org.solovyev.android</groupId>
|
<groupId>org.solovyev.android</groupId>
|
||||||
<artifactId>calculatorpp-core</artifactId>
|
<artifactId>calculatorpp-core</artifactId>
|
||||||
<version>1.5.3-SNAPSHOT</version>
|
<version>1.5.3-SNAPSHOT</version>
|
||||||
<name>Calculator++ Application Core</name>
|
<name>Calculator++ Core</name>
|
||||||
|
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
10
pom.xml
10
pom.xml
@ -46,9 +46,17 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.solovyev.android.calculator</groupId>
|
<groupId>org.solovyev.android</groupId>
|
||||||
<artifactId>calculatorpp-android-app-core</artifactId>
|
<artifactId>calculatorpp-android-app-core</artifactId>
|
||||||
<version>1.5.3-SNAPSHOT</version>
|
<version>1.5.3-SNAPSHOT</version>
|
||||||
|
<type>apklib</type>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.solovyev.android</groupId>
|
||||||
|
<artifactId>calculatorpp-android-app-widget</artifactId>
|
||||||
|
<version>1.5.3-SNAPSHOT</version>
|
||||||
|
<type>apklib</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
Loading…
Reference in New Issue
Block a user