-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8000929
commit 3c80882
Showing
180 changed files
with
6,556 additions
and
6,582 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
42 changes: 21 additions & 21 deletions
42
app/src/main/AndroidManifest.xml → ... version/app/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="it.unical.mat.embasp"> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
|
||
<service | ||
android:name=".specializations.dlv.android.DLVAndroidReasoner" | ||
android:enabled="true" | ||
android:exported="false" | ||
android:process=":remote"> | ||
</service> | ||
|
||
</application> | ||
|
||
</manifest> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="it.unical.mat.embasp"> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
|
||
<service | ||
android:name=".specializations.dlv.android.DLVAndroidReasoner" | ||
android:enabled="true" | ||
android:exported="false" | ||
android:process=":remote"> | ||
</service> | ||
|
||
</application> | ||
|
||
</manifest> |
20 changes: 10 additions & 10 deletions
20
...a/it/unical/mat/embasp/base/Callback.java → ...a/it/unical/mat/embasp/base/Callback.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package it.unical.mat.embasp.base; | ||
|
||
/** | ||
* This interface is used to communicate results of solver invocation to the user | ||
* | ||
* @see Output | ||
*/ | ||
public interface Callback { | ||
public void callback(Output o); | ||
} | ||
package it.unical.mat.embasp.base; | ||
|
||
/** | ||
* This interface is used to communicate results of solver invocation to the user | ||
* | ||
* @see Output | ||
*/ | ||
public interface Callback { | ||
public void callback(Output o); | ||
} |
Oops, something went wrong.