Android Open Source - AppManager-for-Android Check And Install Service






From Project

Back to project page AppManager-for-Android.

License

The source code is released under:

Apache License

If you think the Android project AppManager-for-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright 2014 Soichiro Kashima/*from w ww  . ja  va  2 s  . c om*/
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.appmanager.android.service;

import android.app.IntentService;
import android.content.Intent;
import android.text.TextUtils;
import android.util.Log;

import com.appmanager.android.dao.FileEntryDao;
import com.appmanager.android.entity.FileEntry;
import com.appmanager.android.util.AppDownloader;
import com.appmanager.android.util.InstallUtils;
import com.appmanager.android.util.LogUtils;

import java.util.List;

/**
 * @author maimuzo
 * @since 2014/08/30
 */
public class CheckAndInstallService extends IntentService {
    private static final String TAG = CheckAndInstallService.class.getSimpleName();

    /**
     * Creates an IntentService.  Invoked by your subclass's constructor.
     *
     * @param name Used to name the worker thread, important only for debugging.
     */
    public CheckAndInstallService(String name) {
        super(name);
    }

    public CheckAndInstallService() {
        super("CheckAndInstallService");
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        LogUtils.d(TAG, "update check started.");
        List<FileEntry> list = new FileEntryDao(this).findAll();

        for (FileEntry fe : list) {
            AppDownloader downloader = new AppDownloader(getApplicationContext(), fe);
            try {
                LogUtils.d(TAG, "check: " + fe.url);
                LogUtils.d(TAG, "dump: " + fe.toString());
                if (downloader.needToUpdate(fe)) {
                    LogUtils.d(TAG, "downloading... " + fe.url);
                    AppDownloader.DownloadResponse response = downloader.download(getApplicationContext());
                    if (response != null) {
                        if (!TextUtils.isEmpty(response.errorMessage)) {
                            Log.e("AppManager", response.errorMessage);
                        } else if (!TextUtils.isEmpty(response.downloadedApkPath)) {
                            LogUtils.d(TAG, "download complete. kick com.android.packageinstaller: " + fe.url);
                            InstallUtils.delegateInstall(this, response.downloadedApkPath);
                        }
                    }
                }
            } catch (Exception e) {
                LogUtils.e(TAG, e.getMessage(), e);
            }
        }
        LogUtils.d(TAG, "update check finished.");
    }
}




Java Source Code List

com.appmanager.android.adapter.FileEntryAdapter.java
com.appmanager.android.app.AboutActivity.java
com.appmanager.android.app.BaseActivity.java
com.appmanager.android.app.DetailActivity.java
com.appmanager.android.app.EditActivity.java
com.appmanager.android.app.HelpActivity.java
com.appmanager.android.app.HelpDeveloperActivity.java
com.appmanager.android.app.HelpTesterActivity.java
com.appmanager.android.app.LicenseActivity.java
com.appmanager.android.app.MainActivity.java
com.appmanager.android.app.SettingsActivity.java
com.appmanager.android.dao.FileEntryDao.java
com.appmanager.android.entity.Configuration.java
com.appmanager.android.entity.FileEntry.java
com.appmanager.android.receiver.BootCompleteReceiver.java
com.appmanager.android.samples.dummy.ApplicationTest.java
com.appmanager.android.samples.dummy.app.MainActivity.java
com.appmanager.android.service.CheckAndInstallService.java
com.appmanager.android.task.GetConfigTask.java
com.appmanager.android.task.InstallTask.java
com.appmanager.android.util.AppDownloader.java
com.appmanager.android.util.AppManagerSchemaTest.java
com.appmanager.android.util.AppManagerSchema.java
com.appmanager.android.util.BitmapUtils.java
com.appmanager.android.util.DbHelper.java
com.appmanager.android.util.InstallUtils.java
com.appmanager.android.util.LogUtils.java
com.appmanager.android.util.VersionUtils.java
com.appmanager.android.validator.FileEntryValidator.java