1

Estimote SDK を Android アプリに統合しようとしています。https://github.com/Estimote/Android-SDKで入手できる SDK の手順に従っています。estimote-sdk-preview.jar ファイルを libs ディレクトリに追加しました。私が間違っていることはありますか?

私が受け取るエラーメッセージは次のとおりです。

  • シンボル「estimote」を解決できません
  • シンボル 'sdk' を解決できません
  • シンボル「サービス」を解決できません
  • シンボル「BeaconService」を解決できません

これは私がサービスを追加しようとしている方法です

<service android:name="com.estimote.sdk.service.BeaconService"
    android:exported="false"/>

マニフェスト

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="company.com.application1" >
    <uses-permission android:name="android.permission.BLUETOOTH"/>
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        //----------THIS IS WHERE THE ERRORS ARE----------
        <service android:name="com.estimote.sdk.service.BeaconService"
        android:exported="false"/>
    </application>

</manifest>
4

1 に答える 1