- android/ProjectApp/: rename of MainActivity to ProjectExampleMainActivity

- android/ProjectApp/: updated to latest IClientRemoteService.aidl
This commit is contained in:
Joachim Fritzsch 2013-02-04 12:23:14 +01:00 committed by Oliver Bock
parent 2097bbdbc8
commit 5cf8ba3826
4 changed files with 8 additions and 3 deletions

View File

@ -35,7 +35,7 @@
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.projectapp.MainActivity"
android:name="com.example.projectapp.ProjectExampleMainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View File

@ -23,6 +23,6 @@
<string name="client_android_package_name">edu.berkeley.boinc</string>
<string name="client_download_url">http://fridgelike.com/boinc/BOINC.apk</string>
<string name="client_remote_service_name">edu.berkeley.boinc.client.ClientRemoteService</string>
<string name="client_main_activity_name">edu.berkeley.boinc.AndroidBOINCActivity</string>
<string name="client_main_activity_name">edu.berkeley.boinc.BOINCActivity</string>
<!-- DO NOT CHANGE! -->
</resources>

View File

@ -35,7 +35,7 @@ import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends Activity implements OnClickListener{
public class ProjectExampleMainActivity extends Activity implements OnClickListener{
private final String TAG = "MainActivity";

View File

@ -33,6 +33,11 @@ interface IClientRemoteService {
/* Checks whether interface recipient is ready to serve commands.
* returns success*/
boolean isReady();
/* Returns the version code specified in AndroidManifest.xml.
* can be used to detect new AIDL versions.
* returns version code as Integer*/
int getVersionCode();
//== project management ==
/* Attach project to BOINC application.