Skip to content

Commit

Permalink
Merge pull request #48 from blackberry/next
Browse files Browse the repository at this point in the history
BlackBerry 10 SDK
  • Loading branch information
pelegri committed Dec 10, 2012
2 parents 883dde3 + d1d3698 commit 0aa36e4
Show file tree
Hide file tree
Showing 76 changed files with 1,530 additions and 120 deletions.
4 changes: 2 additions & 2 deletions SensorDemo/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
4 changes: 2 additions & 2 deletions accelgame/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
4 changes: 2 additions & 2 deletions accounts/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
4 changes: 2 additions & 2 deletions addressbook/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
4 changes: 2 additions & 2 deletions bannerads/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
4 changes: 2 additions & 2 deletions barcodereader/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
4 changes: 2 additions & 2 deletions batterysample/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
4 changes: 2 additions & 2 deletions bluetoothsppchat/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
4 changes: 2 additions & 2 deletions bluetoothsppchat/src/DeviceListing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void DeviceListing::update()

bt_rdev_get_friendly_name(next_remote_device, buffer, bufferSize);
map["deviceName"] = QString::fromLatin1(buffer);
bt_rdev_get_addr(next_remote_device, buffer);
bt_rdev_get_address(next_remote_device, buffer);
map["deviceAddress"] = QString::fromLatin1(buffer);
map["deviceClass"] = QString::number(bt_rdev_get_device_class(next_remote_device, BT_COD_DEVICECLASS));
map["deviceType"] = tr("Bluetooth Devices Paired");
Expand Down Expand Up @@ -88,7 +88,7 @@ void DeviceListing::discover()

bt_rdev_get_friendly_name(next_remote_device, buffer, bufferSize);
map["deviceName"] = QString::fromLatin1(buffer);
bt_rdev_get_addr(next_remote_device, buffer);
bt_rdev_get_address(next_remote_device, buffer);
map["deviceAddress"] = QString::fromLatin1(buffer);
map["deviceClass"] = QString::number(bt_rdev_get_device_class(next_remote_device, BT_COD_DEVICECLASS));
map["deviceType"] = tr("Bluetooth Devices Nearby");
Expand Down
4 changes: 2 additions & 2 deletions calendar/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
4 changes: 2 additions & 2 deletions callapizza/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ You will learn how to:
========================================================================
Requirements:

BlackBerry 10 Native SDK Beta 4
BlackBerry 10 Native SDK

========================================================================
Running the example:

1. Clone the Sample repository.
2. Launch BlackBerry 10 Native SDK Beta, and from the File menu, select Import.
2. Launch BlackBerry 10 Native SDK, and from the File menu, select Import.
3. Expand General, and select Existing Projects into Workspace. Click Next.
4. Browse to the location of your sample directory, and then click OK.
5. The sample project should display in the Projects section.
Expand Down
Loading

0 comments on commit 0aa36e4

Please sign in to comment.