Skip to content

Commit ea46ad2

Browse files
committed
rename to fsif
1 parent 288858b commit ea46ad2

File tree

86 files changed

+199
-2947
lines changed

Some content is hidden

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

86 files changed

+199
-2947
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -430,31 +430,6 @@ jobs:
430430
myci-deploy-pacman-ssh.sh --server gagis.hopto.org --key repo_key_rsa --repo cppfw/msys2/${{ matrix.repo }} --database cppfw_${{ matrix.repo }} $f
431431
done
432432
if: startsWith(github.ref, 'refs/tags/')
433-
##### msvs #####
434-
msvs:
435-
runs-on: windows-latest
436-
defaults:
437-
run:
438-
shell: powershell
439-
steps:
440-
- name: git clone
441-
uses: actions/checkout@v3
442-
- name: install CoAPP tools
443-
uses: myci-actions/install-coapp-tools@main
444-
- name: nuget update
445-
run: |
446-
nuget restore msvs_solution/msvs_solution.sln
447-
nuget update msvs_solution/msvs_solution.sln
448-
- name: add msbuild to PATH
449-
uses: microsoft/[email protected]
450-
- name: build
451-
run: .\nuget\build_nuget.ps1
452-
- name: deploy
453-
uses: myci-actions/publish-nuget@main
454-
with:
455-
filename: '.\nuget\*.nupkg'
456-
api-key: ${{ secrets.NUGET_DOT_ORG_API_KEY }}
457-
if: startsWith(github.ref, 'refs/tags/')
458433
##### vcpkg-linux #####
459434
vcpkg-linux:
460435
strategy:

build/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
33
android {
44
compileSdkVersion 29
55
defaultConfig {
6-
applicationId "io.github.cppfw.papki_test"
6+
applicationId "io.github.cppfw.fsif_test"
77
minSdkVersion 21
88
targetSdkVersion 29
99

build/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="org.cppfw.papki" >
3+
package="org.cppfw.fsif" >
44

55
<application
66
android:allowBackup="true"

build/android/app/src/main/cpp/native-lib.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
extern "C"
55
JNIEXPORT jstring JNICALL
6-
Java_org_cppfw_papki_MainActivity_stringFromJNI(
6+
Java_org_cppfw_fsif_MainActivity_stringFromJNI(
77
JNIEnv* env,
88
jobject /* this */) {
99
std::string hello = "Hello from C++";

build/android/app/src/main/java/org/cppfw/papki/MainActivity.java renamed to build/android/app/src/main/java/org/cppfw/fsif/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.cppfw.papki;
1+
package org.cppfw.fsif;
22

33
import android.app.Activity;
44
import android.os.Bundle;

build/android/app/src/main/res/layout/activity_main.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xmlns:app="http://schemas.android.com/apk/res-auto"
66
android:layout_width="match_parent"
77
android:layout_height="match_parent"
8-
tools:context="org.cppfw.papki.MainActivity">
8+
tools:context="org.cppfw.fsif.MainActivity">
99

1010

1111
</android.support.constraint.ConstraintLayout>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<resources>
2-
<string name="app_name">papki</string>
2+
<string name="app_name">fsif</string>
33
</resources>

build/android/papki-$(version).pom.in renamed to build/android/fsif-$(version).pom.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.github.cppfw</groupId>
6-
<artifactId>papki</artifactId>
6+
<artifactId>fsif</artifactId>
77
<version>$(version)</version>
88
<packaging>aar</packaging>
99
<dependencies>
File renamed without changes.

build/android/papki/CMakeLists.txt renamed to build/android/fsif/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.4.1)
22

3-
set(name papki)
3+
set(name fsif)
44
project(${name})
55

66
file(GLOB_RECURSE srcs "../../../src/*.cpp")

0 commit comments

Comments
 (0)