Android Studio: какие настройки компилятора при включении Google Maps

Я создал новый проект в Android Studio и добавил активность в Google Maps.

Я получаю эти предупреждения:

warning: com/google/android/gms/maps/GoogleMap.class(com/google/android/gms/maps:GoogleMap.class): major version 51 is newer than 50, the highest major version supported by this compiler.
It is recommended that the compiler be upgraded.
warning: com/google/android/gms/maps/SupportMapFragment.class(com/google/android/gms/maps:SupportMapFragment.class): major version 51 is newer than 50, the highest major version supported by this compiler.
It is recommended that the compiler be upgraded.
warning: com/google/android/gms/maps/model/LatLng.class(com/google/android/gms/maps/model:LatLng.class): major version 51 is newer than 50, the highest major version supported by this compiler.
It is recommended that the compiler be upgraded.
warning: com/google/android/gms/maps/model/MarkerOptions.class(com/google/android/gms/maps/model:MarkerOptions.class): major version 51 is newer than 50, the highest major version supported by this compiler.
It is recommended that the compiler be upgraded.
warning: com/google/android/gms/maps/model/Marker.class(com/google/android/gms/maps/model:Marker.class): major version 51 is newer than 50, the highest major version supported by this compiler.
It is recommended that the compiler be upgraded.

Я предполагаю, что у меня неудачный матч JDK или что-то в этом роде. Я установил JDK 7, и когда я делаю javac -version, я вижу 1.7.0_65. Я изменил в настройках Android Studio версию байт-кода Project, но это не изменило эти предупреждения.

Мой build.gradle имеет это

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    // You must install or update the Google Repository through the SDK manager to use this dependency.
    compile 'com.google.android.gms:play-services:5.0.77'
    compile 'com.android.support:support-v13:18.0.+'
}

Что мне нужно сделать, чтобы исправить эти предупреждения, или я должен игнорировать их в Android Studio?

Ответы на вопрос(2)

Ваш ответ на вопрос