Skip to content

Commit 02c356a

Browse files
Update example apps for release 4.24.0.0
Signed-off-by: kakumar <[email protected]>
1 parent 641855c commit 02c356a

File tree

431 files changed

+2051
-7494
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

431 files changed

+2051
-7494
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For an overview of the existing features, please check the _Developer Guide_ for
2626

2727
> For now, HERE SDK (Navigate) is only available upon request. Please contact your HERE representative to receive access including a set of evaluation credentials.
2828
29-
## List of available example apps (Version 4.23.5.0)
29+
## List of available example apps (Version 4.24.0.0)
3030

3131
- [List of example apps for the HERE SDK for Android](https://www.here.com/docs/bundle/sdk-for-android-developer-guide/page/topics/examples.html).
3232
- [List of example apps for the HERE SDK for iOS](https://www.here.com/docs/bundle/sdk-for-ios-developer-guide/page/topics/examples.html).

examples/latest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This folder contains the HERE SDK examples apps for version: 4.23.5.0
1+
This folder contains the HERE SDK examples apps for version: 4.24.0.0
22

33
- HERE SDK for Android ([Lite](lite/android/), [Explore](explore/android/), [Navigate](navigate/android/))
44
- HERE SDK for iOS ([Lite](lite/ios/), [Explore](explore/ios/), [Navigate](navigate/ios/))
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
/build
2+
3+
# Ignore all AARs in libs.
24
/libs/*.aar
5+
6+
# But NOT those that contain 'heresdk-units' in the filename.
7+
!libs/*heresdk-units*.aar
Binary file not shown.

examples/latest/explore/android/Java/Camera/app/src/main/java/com/here/sdk/camera/MainActivity.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@
3535
import com.here.sdk.mapview.MapScene;
3636
import com.here.sdk.mapview.MapScheme;
3737
import com.here.sdk.mapview.MapView;
38+
import com.here.sdk.units.core.utils.EnvironmentLogger;
39+
import com.here.sdk.units.core.utils.PermissionsRequestor;
3840

3941
public class MainActivity extends AppCompatActivity {
4042

43+
private EnvironmentLogger environmentLogger = new EnvironmentLogger();
4144
private static final String TAG = MainActivity.class.getSimpleName();
4245
private PermissionsRequestor permissionsRequestor;
4346
private CameraExample cameraExample;
@@ -47,6 +50,10 @@ public class MainActivity extends AppCompatActivity {
4750
protected void onCreate(Bundle savedInstanceState) {
4851
super.onCreate(savedInstanceState);
4952

53+
// Log application and device details.
54+
// It expects a string parameter that describes the application source language.
55+
environmentLogger.logEnvironment("Java");
56+
5057
// Usually, you need to initialize the HERE SDK only once during the lifetime of an application.
5158
initializeHERESDK();
5259

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
/build
2+
3+
# Ignore all AARs in libs.
24
/libs/*.aar
5+
6+
# But NOT those that contain 'heresdk-units' in the filename.
7+
!libs/*heresdk-units*.aar

examples/latest/explore/android/Java/CameraKeyframeTracks/app/src/main/java/com/here/camerakeyframetracks/MainActivity.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@
3939
import com.here.sdk.mapview.MapScene;
4040
import com.here.sdk.mapview.MapScheme;
4141
import com.here.sdk.mapview.MapView;
42+
import com.here.sdk.units.core.utils.EnvironmentLogger;
43+
import com.here.sdk.units.core.utils.PermissionsRequestor;
4244

4345
public class MainActivity extends AppCompatActivity {
4446

47+
private EnvironmentLogger environmentLogger = new EnvironmentLogger();
4548
private static final String TAG = MainActivity.class.getSimpleName();
4649
private PermissionsRequestor permissionsRequestor;
4750
private MapView mapView;
@@ -52,6 +55,10 @@ public class MainActivity extends AppCompatActivity {
5255
protected void onCreate(Bundle savedInstanceState) {
5356
super.onCreate(savedInstanceState);
5457

58+
// Log application and device details.
59+
// It expects a string parameter that describes the application source language.
60+
environmentLogger.logEnvironment("Java");
61+
5562
// Usually, you need to initialize the HERE SDK only once during the lifetime of an application.
5663
initializeHERESDK();
5764

examples/latest/explore/android/Java/CameraKeyframeTracks/app/src/main/java/com/here/camerakeyframetracks/PermissionsRequestor.java

Lines changed: 0 additions & 126 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
/build
2+
3+
# Ignore all AARs in libs.
24
/libs/*.aar
5+
6+
# But NOT those that contain 'heresdk-units' in the filename.
7+
!libs/*heresdk-units*.aar

0 commit comments

Comments
 (0)